Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created August 15, 2013 11:12
Show Gist options
  • Select an option

  • Save kmlprtsng/6240056 to your computer and use it in GitHub Desktop.

Select an option

Save kmlprtsng/6240056 to your computer and use it in GitHub Desktop.
Find Duplicated record
SELECT count(email), email
FROM Users
GROUP BY email
HAVING count(email) > 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment