Docs
Docs
Tags
Light
Dark
Auto
Sql
Leetcode submissions
2025-07-28 13:35:55 +0000 UTC
2025-07-28 13:35:55 +0000 UTC
Duplicate Emails
Categories:
Sql
Tags:
Generated
Leetcode
Links
https://leetcode.com/submissions/detail/1714568245/
Code
SELECT
email
FROM
Person
GROUP
BY
email
HAVING
COUNT(email)
>
1
;