We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5b4df commit 6ce57a5Copy full SHA for 6ce57a5
easy/Delete Duplicate Emails.sql
@@ -0,0 +1,5 @@
1
+--196. Delete Duplicate Emails--
2
+# Please write a DELETE statement and DO NOT write a SELECT statement.
3
+# Write your MySQL query statement below
4
+delete A from Person A, Person B
5
+where A.id > B.id and A.email=B.email;
0 commit comments