SQL

leetcode 1050. Actors and Directors Who Cooperated At Least Three Times

무적김두칠 2022. 7. 26. 11:19

1
2
3
4
5
# Write your MySQL query statement below
select actor_id, director_id
from ActorDirector
group by actor_id, director_id
having count(actor_id)>=3
cs
반응형