View Single Post
  #5 (permalink)  
Old 03-18-2007, 01:26 AM
Rock
 
Posts: n/a
Default MS SQL answer. Re: Find duplicate entries in a table?

[sql]
SELECT empno,count(*) as counter FROM emp
[/sql]
Reply With Quote