LeetCode_Study_Plan/SQL
182. Duplicate Emails mysql
개발하는루루
2022. 10. 4. 10:44
https://leetcode.com/problems/duplicate-emails/?envType=study-plan&id=sql-i
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
select email as Email from person group by email having count(id) >= 2;