I need to find rows with duplicate order numbers in a table in SQL Server.
For example SELECT * shows:
No
-----
5001
5002
5003
5003
5003
5004
5005
5006
5006
I want to get
No
------
5003
5003
5003
5006
5006
Is it possible to write a query to do that?