Duplicate Emails LeetCode Solution

This Leetcode problem Duplicate Emails LeetCode Solution is done in SQL.

List of all LeetCode Solution

Duplicate Emails LeetCode Solution

Duplicate Emails LeetCode Solution

Problem Statement

Column NameType
id int
email varchar
Table: Person

id is the primary key (column with unique values) for this table. Each row of this table contains an email. The emails will not contain uppercase letters.

Write a solution to report all the duplicate emails. Note that it’s guaranteed that the email field is not NULL.

Return the result table in any order.

The result format is in the following example.

Example 1:
Input:

id email
1a@b.com
2c@d.com
3a@b.com
Person table:

Output:

Email
a@b.com

Explanation: a@b.com is repeated two times.

Duplicate Emails LeetCode Solution MySQL

select 
  Email 
from 
  Person 
group by 
  Email 
having 
  count(Email) > 1;Code language: SQL (Structured Query Language) (sql)
Scroll to Top