sql Find Duplicates
SELECT Column1, COUNT(Column1) AS NumberOfOccurrences FROM TableName GROUP BY Column1 HAVING ( COUNT(Column1) > 1 )
Finds duplicate records within a database.
Updated: Saturday 9th October 2010, 11:48pm
There are 0 comments
Comments are currently closed.