Skip to content

Commit dd03825

Browse files
Update Duplicate_Emails.sql
1 parent 3ea49e6 commit dd03825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Duplicate Emails/Duplicate_Emails.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Write your MySQL query statement below
22
# Runtime: 206 ms, faster than 29.08% of MySQL online submissions for Duplicate Emails.
3-
select Email from Person group by Email having count(distinct Id) > 1;
3+
select Email from Person group by Email having count(*) > 1;

0 commit comments

Comments
 (0)