سؤال

Select * from table
where Numero_Operacion in 
(
Select Numero_Operacion from table
group by Numero_Operacion
having count(Numero_Operacion)>1
)

THANKS!

هل كانت مفيدة؟

المحلول

It would be something like this

<Table>.GroupBy(x => x.Numero_Operacion)
       .Where(x => x.Count() > 1)
       .SelectMany(x => x)
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top