Skip to content

Instantly share code, notes, and snippets.

@mexitek
Forked from alvarezr/gist:5540771
Last active December 17, 2015 03:08
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 mexitek/5540805 to your computer and use it in GitHub Desktop.
Save mexitek/5540805 to your computer and use it in GitHub Desktop.
-- DELETE duplicate entry
DELETE
FROM L_table
WHERE id NOT IN (SELECT MIN(id) id
FROM L_table
GROUP BY l_field, etc ASC);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment