본문 바로가기
Develop/Database

[Leetcode] 182. Duplicate Emails (MySQL) 문제 및 풀이

by 초코칩프라푸치노 2021. 12. 12.

문제) Leetcode - SQL - Duplicate Emails

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

 

Duplicate Emails - LeetCode

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.com

 

중복된 이메일을 찾는 문제였습니다. Group by로 email 별로 묶은 후, count(email)을 통해 개수가 1이 아닌 것을 출력했습니다.

 

풀이)

select email
from Person
group by email
having count(email) != 1
반응형

댓글