182.Duplicate Emails
# Write your MySQL query statement below
select Email from Person group by Email having count(Email)>1;Last updated
# Write your MySQL query statement below
select Email from Person group by Email having count(Email)>1;Last updated