182. Duplicate Emails
Duplicate Emails
Solution
# Write your MySQL query statement below
select distinct p1.Email
from Person p1, Person p2
where p1.Id <> p2.Id and p1.Email = p2.EmailLast updated
Duplicate Emails
# Write your MySQL query statement below
select distinct p1.Email
from Person p1, Person p2
where p1.Id <> p2.Id and p1.Email = p2.EmailLast updated