Skip to content

Instantly share code, notes, and snippets.

@shavidzet
Last active March 13, 2016 15:47
Show Gist options
  • Select an option

  • Save shavidzet/daa16dfd055b329abd98 to your computer and use it in GitHub Desktop.

Select an option

Save shavidzet/daa16dfd055b329abd98 to your computer and use it in GitHub Desktop.
Detect duplicate entries
SELECT
code, COUNT(*)
FROM
customer_codes
GROUP BY
code
HAVING
COUNT(*) > 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment