반응형
https://leetcode.com/problems/actors-and-directors-who-cooperated-at-least-three-times/
group by를 사용해보는 문제였습니다.
📕 풀이방법
📔 풀이과정
actor_id, director_id에 대해 구분되는 group by를 수행한 후 timestamp의 행을 세었을 때 3이상인 row를 select해주면 됩니다.
📕 Code
📔 MySQL, ORACLE
select actor_id, director_id from actordirector
group by actor_id, director_id
having count(timestamp) >= 3;
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1148. Article Views I (0) | 2023.11.09 |
---|---|
(SQL) - LeetCode (easy) 1141. User Activity for the Past 30 Days I (0) | 2023.11.07 |
(SQL) - LeetCode (easy) 620. Not Boring Movies (0) | 2023.05.24 |
(SQL) - LeetCode (easy) 607. Sales Person (0) | 2023.05.19 |
(SQL) - LeetCode (easy) 596. Classes More Than 5 Students (1) | 2023.05.10 |