Skip to content

Instantly share code, notes, and snippets.

@krabello
Created April 17, 2017 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krabello/044f9b170290fa7241d911243b83de0f to your computer and use it in GitHub Desktop.
Save krabello/044f9b170290fa7241d911243b83de0f to your computer and use it in GitHub Desktop.
Find number of duplicates entries in a column
SELECT COLUMN_NAME, COUNT(*) c FROM table GROUP BY COLUMN_NAME HAVING c > 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment