Tuesday 9 September 2014

SQL Server: Finding duplicate records in database table

Here's a handy query for finding duplicates in a table. Suppose you want to find all email addresses in a table name users that exist more than once:

SELECT email, 
COUNT(email) AS NumOccurrences
FROM users
GROUP BY email
HAVING ( COUNT(email) > 1 )


You could also use this technique to find rows that occur exactly once:

SELECT email
FROM users
GROUP BY email
HAVING ( COUNT(email) = 1 )


/Adnan


This post is from my old blog posted  on February 2011, that unfortunately no longer exist.  

About the Author

Adnan Zameer, Lead Developer at Optimizley UK, is a certified Microsoft professional, specializing in web app architecture. His expertise includes Optimizley CMS and Azure, showcasing proficiency in crafting robust and efficient solutions.

0 comments :

Post a Comment