mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
5 lines
105 B
SQL
5 lines
105 B
SQL
# Write your MySQL query statement below
|
|
SELECT email
|
|
FROM Person
|
|
GROUP BY email
|
|
HAVING count(email) > 1; |