-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmore_join.sql
234 lines (116 loc) · 3.81 KB
/
more_join.sql
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!--
1.
List the films where the yr is 1962 [Show id, title]
-->
SELECT id, title
FROM movie
WHERE yr=1962
<!--
When was Citizen Kane released?
2.
Give year of 'Citizen Kane'.
-->
select year from movie where title='Citizen Kane'
<!--
3.
List all of the Star Trek movies, include the id, title and yr (all of these movies include the words Star Trek in the title). Order results by year.
-->
<!--
id for actor Glenn Close
4.
What id number does the actor 'Glenn Close' have?
-->
select id from actor where name='Glenn Close'
<!--
id for Casablanca
5.
What is the id of the film 'Casablanca'
-->
select id from movie where title='Casablanca'
<!--
Cast list for Casablanca
6.
Obtain the cast list for 'Casablanca'.
what is a cast list?
The cast list is the names of the actors who were in the movie.
Use movieid=11768, (or whatever value you got from the previous question)
-->
select name from actor where id in (select actorid from casting where movieid=11768)
<!--
Alien cast list
7.
Obtain the cast list for the film 'Alien'
-->
select name from actor where id in (select actorid from casting where movieid=(select id from movie where title='Alien'))
<!--
Harrison Ford movies
8.
List the films in which 'Harrison Ford' has appeared
-->
select title from movie where id in (select movieid from casting where actorid=(select id from actor where name='Harrison Ford' ))
<!--
Harrison Ford as a supporting actor
9.
List the films where 'Harrison Ford' has appeared - but not in the starring role. [Note: the ord field of casting gives the position of the actor. If ord=1 then this actor is in the starring role]
-->
select title from movie where id in (select movieid from casting where ord!=1 and actorid=(select id from actor where name='Harrison Ford'))
<!--
Lead actors in 1962 movies
10.
List the films together with the leading star for all 1962 films.
-->
SELECT title, name
FROM movie JOIN casting ON (id=movieid)
JOIN actor ON (actor.id = actorid)
WHERE ord=1 AND yr = 1962
<!--
Busy years for John Travolta
11.
Which were the busiest years for 'John Travolta', show the year and the number of movies he made each year for any year in which he made more than 2 movies.
-->
SELECT yr,COUNT(title) FROM
movie JOIN casting ON movie.id=movieid
JOIN actor ON actorid=actor.id
where name='John Travolta'
GROUP BY yr
HAVING COUNT(title)=(SELECT MAX(c) FROM
(SELECT yr,COUNT(title) AS c FROM
movie JOIN casting ON movie.id=movieid
JOIN actor ON actorid=actor.id
where name='John Travolta'
GROUP BY yr) AS t
)
<!--
Lead actor in Julie Andrews movies
12.
List the film title and the leading actor for all of the films 'Julie Andrews' played in.
Did you get "Little Miss Marker twice"?
-->
SELECT title, name FROM movie
JOIN casting x ON movie.id = movieid
JOIN actor ON actor.id =actorid
WHERE ord=1 AND movieid IN
(SELECT movieid FROM casting y
JOIN actor ON actor.id=actorid
WHERE name='Julie Andrews')
Submit SQLRestore default
<!--
Actors with 30 leading roles
13.
Obtain a list, in alphabetical order, of actors who've had at least 30 starring roles.
-->
select name from actor JOIN casting ON (id=actorid AND
(select count(ord) from casting where actor.id=actorid and ord=1) >=30 )
<!--
14.
List the films released in the year 1978 ordered by the number of actors in the cast, then by title.
-->
select title,count(actor.name) as cnt from movie JOIN casting ON id=casting.movieid JOIN actor on casting.actorid=actor.id where yr=1978 GROUP by title order by cnt desc,title asc
<!--
15.
List all the people who have worked with 'Art Garfunkel'.
-->
SELECT DISTINCT name
FROM actor JOIN casting ON id=actorid
WHERE movieid IN (SELECT movieid FROM casting JOIN actor ON (actorid=id AND name='Art Garfunkel')) AND name != 'Art Garfunkel'
GROUP BY name