Created
September 21, 2020 06:48
-
-
Save payamomrani/d68f91de2e9229ae8c2388d94d34f480 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find Duplicate Rows// | |
SELECT | |
email, COUNT(email) | |
FROM | |
contacts | |
GROUP BY | |
HAVING | |
COUNT(email) > 1; | |
// End // | |
//Delete Duplicate Rows// | |
DELETE c1 FROM contacts c1 | |
INNER JOIN contacts c2 | |
WHERE | |
c1.id > c2.id AND | |
c1.email = c2.email; | |
// End // |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment