Skip to content

Instantly share code, notes, and snippets.

@shakirullahi
Created July 28, 2016 04:23
Show Gist options
  • Save shakirullahi/3592b34900a5e49b4ce76fe181891eb7 to your computer and use it in GitHub Desktop.
Save shakirullahi/3592b34900a5e49b4ce76fe181891eb7 to your computer and use it in GitHub Desktop.
delete duplicate rows except one with small id
DELETE n1 FROM names n1, names n2 WHERE n1.id > n2.id AND n1.name = n2.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment