182. Duplicate Emails(SQL)
# Easy
# Write your MySQL query statement below
select distinct p1.Email from Person p1, Person p2
where p1.Id <> p2.Id and p1.Email = p2.Email;
Last updated
Was this helpful?
# Easy
# Write your MySQL query statement below
select distinct p1.Email from Person p1, Person p2
where p1.Id <> p2.Id and p1.Email = p2.Email;
Last updated
Was this helpful?