Skip to content

Latest commit

 

History

History

LC-182

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

LC-182 - Duplicate Emails

Create table If Not Exists Person (Id int, Email varchar(255))
Truncate table Person
insert into Person (Id, Email) values ('1', 'a@b.com')
insert into Person (Id, Email) values ('2', 'c@d.com')
insert into Person (Id, Email) values ('3', 'a@b.com')

Write a SQL query to find all duplicate emails in a table named Person.

+----+---------+
| Id | Email   |
+----+---------+
| 1  | a@b.com |
| 2  | c@d.com |
| 3  | a@b.com |
+----+---------+

For example, your query should return the following for the above table:

+---------+
| Email   |
+---------+
| a@b.com |
+---------+
  • Difficulty: EASY

Notes

  • All emails are in lowercase.

Solutions

  1. Using GROUP BY and a temporary table
  2. Using GROUP BY and HAVING condition