Dashboard Temp Share Shortlinks Frames API

devwajahat - HTMLify profile

files of /devwajahat/leetcode-easy-problems/sql-delete-duplicate-emails(196)/

/devwajahat/leetcode-easy-problems/sql-delete-duplicate-emails(196)/code.sql
5 Views
0 Comments
DELETE t1
FROM Person AS t1
INNER JOIN Person AS t2
ON t1.email = t2.email
WHERE t1.id > t2.id;