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.
GROUP BY
+ HAVING
으로 찾을 수 있다.SELECT email FROM Person
GROUP BY email
HAVING COUNT(email) > 1