Published on

Leetcode - 182. Duplicate Emails

Authors
  • avatar
    Name
    Indo Yoon
    Twitter
Table of Contents

정답

[Loading...

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

LeetCode

](https://leetcode.com/problems/duplicate-emails/)

문제

SELECT email AS Email
FROM Person
GROUP BY email
HAVING COUNT(email) > 1