Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Select * from table where Numero_Operacion in ( Select Numero_Operacion from table group by Numero_Operacion having count(Numero_Operacion)>1 )
谢谢!
会是这样的
<Table>.GroupBy(x => x.Numero_Operacion) .Where(x => x.Count() > 1) .SelectMany(x => x)