Skip to content

Instantly share code, notes, and snippets.

@fulippo
Created November 13, 2012 16:41
Show Gist options
  • Save fulippo/4066855 to your computer and use it in GitHub Desktop.
Save fulippo/4066855 to your computer and use it in GitHub Desktop.
Find duplicates in MySQL
SELECT <field_name>, COUNT(*) c FROM <table> GROUP BY <field_name> HAVING c > 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment