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

谢谢!

4

1 回答 1

1

会是这样的

<Table>.GroupBy(x => x.Numero_Operacion)
       .Where(x => x.Count() > 1)
       .SelectMany(x => x)
于 2013-09-25T16:31:16.133 回答