-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdirectors actor 28-9-22
More file actions
51 lines (36 loc) · 1.39 KB
/
directors actor 28-9-22
File metadata and controls
51 lines (36 loc) · 1.39 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
link -- https://www.codingninjas.com/codestudio/problems/director-s-actor_2246916?topList=top-100-sql-problems
Problem Statement
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 have co-worked with the director at least 3 times.
Example:
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 |
+-------------+-------------+-------------+
Result table:
+-------------+-------------+
| actor_id | director_id |
+-------------+-------------+
| 1 | 1 |
+-------------+-------------+
The only pair is (1, 1) where they co-worked exactly 3 times.
------------------solution -----------------------------
select actor_id,director_id from ActorDirector
group by 1,2
having count(1)>=3