-
182. Duplicate Emails mysqlLeetCode_Study_Plan/SQL 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;
'LeetCode_Study_Plan > SQL' 카테고리의 다른 글
1587. Bank Account Summary II mysql (0) 2022.10.04 1050. Actors and Directors Who Cooperated At Least Three Times mysql (0) 2022.10.04 1158. Market Analysis I mysql (0) 2022.10.03 1393. Capital Gain/Loss mysql (0) 2022.10.03 1407. Top Travellers mysql (0) 2022.10.03