Red Glitter Pointer

 

https://leetcode.com/problems/duplicate-emails/description/

 

 

 

👇 정답 코드

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

 

+ Recent posts

loading