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.
2 parents f432bc8 + 8e99ffe commit 4dc6b3bCopy full SHA for 4dc6b3b
leetcode_Sql/duplicate_email.sql
@@ -0,0 +1,6 @@
1
+select email
2
+from person
3
+group by email
4
+having count(id) >= 2;
5
+
6
+-- LINK : https://leetcode.com/problems/duplicate-emails/
0 commit comments