-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactorsAndDirectorsWhoCooperatedAtLeastThreeTimes1050.sql
More file actions
63 lines (48 loc) · 1.63 KB
/
actorsAndDirectorsWhoCooperatedAtLeastThreeTimes1050.sql
File metadata and controls
63 lines (48 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Table: ActorDirector
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| actor_id | int |
| director_id | int |
| timestamp | int |
+-------------+---------+
timestamp is the primary key column for this table.
Write a SQL query for a report that provides the pairs (actor_id, director_id) where the actor has cooperated with the director at least three times.
Return the result table in any order.
The query result format is in the following example.
Example 1:
Input:
ActorDirector table:
+-------------+-------------+-------------+
| actor_id | director_id | timestamp |
+-------------+-------------+-------------+
| 1 | 1 | 0 |
| 1 | 1 | 1 |
| 1 | 1 | 2 |
| 1 | 2 | 3 |
| 1 | 2 | 4 |
| 2 | 1 | 5 |
| 2 | 1 | 6 |
+-------------+-------------+-------------+
Output:
+-------------+-------------+
| actor_id | director_id |
+-------------+-------------+
| 1 | 1 |
+-------------+-------------+
Explanation: The only pair is (1, 1) where they cooperated exactly 3 times.
# Write your MySQL query statement below
select actor_id, director_id
from (
select actor_id, director_id, count(*) as c
from ActorDirector
group by director_id, actor_id
) as temp
where temp.c > 2
# 266 ms solution
with cte as(
select actor_id,director_id,count(director_id) as cnt from ActorDirector
group by actor_id,director_id)
select actor_id,director_id
from cte
where cnt>=3