Thread
:
Find duplicate entries in a table?
View Single Post
#
5
(
permalink
)
03-18-2007, 01:26 AM
Rock
Posts: n/a
MS SQL
answer.
Re: Find duplicate entries in a table?
[sql]
SELECT empno,count(*) as counter FROM emp
[/sql]
Rock