-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionAnswer.sql
More file actions
300 lines (230 loc) · 7.97 KB
/
questionAnswer.sql
File metadata and controls
300 lines (230 loc) · 7.97 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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
-- Exercise 1
-- Find the title of each film
SELECT Title
FROM movies;
-- Find the director of each film
SELECT director
FROM movies;
-- Find the title and director of each film
SELECT director,title
FROM movies;
-- Find the title and year of each film
SELECT year ,title
FROM movies;
-- Find all the information about each film
SELECT *
FROM movies;
-- Exercise 2
-- Find the movie with a row id of 6
SELECT *
FROM movies
WHERE ID=6;
-- Find the movies released in the years between 2000 and 2010
SELECT *
FROM movies
WHERE Year BETWEEN 2000 AND 2010;
-- Find the movies not released in the years between 2000 and 2010
SELECT *
FROM movies
WHERE Year NOT BETWEEN 2000 AND 2010;
-- Find the first 5 Pixar movies and their release year
SELECT *
FROM movies
LIMIT 5;
-- Exercise 3
-- Find all the Toy Story movies
SELECT *
FROM movies
WHERE Title like "%toy Story%";
-- Find all the movies directed by John Lasseter
SELECT *
FROM movies
WHERE Director like "%John Lasseter%";
-- Find all the movies (and director) not directed by John Lasseter
SELECT *
FROM movies
WHERE Director not like "%John Lasseter%";
-- Find all the WALL-* movies
SELECT *
FROM movies
WHERE Title like "%WALL-%";
-- Exercise 4
-- List all directors of Pixar movies (alphabetically), without duplicates
SELECT DISTINCT Director
FROM movies
ORDER BY Director;
-- List the last four Pixar movies released (ordered from most recent to least)
SELECT *
FROM movies
ORDER BY Year desc
limit 4;
-- List the first five Pixar movies sorted alphabetically
SELECT *
FROM movies
order by Title
limit 5 ;
-- List the next five Pixar movies sorted alphabetically
SELECT *
FROM movies
order by Title
limit 5 offset 5 ;
-- Exercise 5
-- List all the Canadian cities and their populations
SELECT *
FROM north_american_cities
where country = "Canada";
-- Order all the cities in the United States by their latitude from north to south
SELECT *
FROM north_american_cities
WHERE Country like "%United States%"
order by latitude desc ;
-- List all the cities west of Chicago, ordered from west to east
SELECT City
FROM north_american_cities
WHERE Longitude <-87.629798
order by Longitude ;
-- List the two largest cities in Mexico (by population)
SELECT *
FROM north_american_cities
WHERE Country LIKE "%Mexico%"
order by Population desc
limit 2 ;
-- List the third and fourth largest cities (by population) in the United States and their population
SELECT city
FROM north_american_cities
WHERE Country like "%United States%"
order by Population desc
limit 2 offset 2 ;
-- Exercise 6
-- Find the domestic and international sales for each movie
SELECT title,Domestic_sales,International_sales
FROM movies
join Boxoffice on Id=Movie_id ;
-- Show the sales numbers for each movie that did better internationally rather than domestically
SELECT title,Domestic_sales,International_sales
FROM movies
join Boxoffice on Id=Movie_id
where Domestic_sales<International_sales;
-- List all the movies by their ratings in descending order
SELECT title,rating
FROM movies
join Boxoffice on Id=Movie_id
order by Rating desc;
-- Exercise 7
-- Find the list of all buildings that have employees
SELECT DISTINCT Building
FROM employees
join Buildings on Building=Building_name
where Years_employed >0;
-- Find the list of all buildings and their capacity
SELECT *
FROM Buildings ;
-- List all buildings and the distinct employee roles in each building (including empty buildings)
SELECT DISTINCT Building_NAME,Role
FROM Buildings
LEFT JOIN Employees ON Building_name=Building ;
-- Exercise 8
-- Find the name and role of all employees who have not been assigned to a building
SELECT *
FROM employees
WHERE Building IS NULL;
-- Find the names of the buildings that hold no employees
SELECT *
FROM Buildings
LEFT JOIN Employees
ON Building_name = Building
WHERE Building IS NULL;
-- Exercise 9
-- List all movies and their combined sales in millions of dollars
SELECT title,(Domestic_sales+International_sales)/1000000 AS TOTAL_SALES
FROM movies
join Boxoffice on Id=Movie_id ;
-- List all movies and their ratings in percent
SELECT title,(10*Rating) AS Rating_percentage
FROM movies
join Boxoffice on Id=Movie_id ;
-- List all movies that were released on even number years
SELECT title,(year%2) AS EVEN_YEAR
FROM movies
where EVEN_YEAR =0 ;
-- Exercise 10
-- Find the longest time that an employee has been at the studio
SELECT max(Years_employed)
FROM employees;
-- For each role, find the average number of years employed by employees in that role
SELECT AVG(Years_employed),ROLE
FROM employees GROUP BY ROLE;
-- Find the total number of employee years worked in each building
SELECT SUM(Years_employed),Building
FROM employees GROUP BY Building;
-- Exercise 11
-- Find the number of Artists in the studio (without a HAVING clause)
SELECT role,count()
FROM employees
where role="Artist";
-- Find the number of Employees of each role in the studio
SELECT role,count(*) AS no_artist
from employees group by role;
-- Find the total number of years employed by all Engineers
SELECT *,role,sum(Years_employed)
FROM employees
where role like "%Engineer%";
-- Exercise 12
-- Find the number of movies each director has directed
SELECT Director,count()
FROM movies group by Director;
-- Find the total domestic and international sales that can be attributed to each director
SELECT Director,sum(Domestic_sales+International_sales)
FROM movies
JOIN Boxoffice
ON Id=Movie_id
GROUP BY Director;
-- Exercise 13
-- Add the studio's new production, Toy Story 4 to the list of movies (you can use any director)
INSERT INTO Movies
VALUES (4, "Toy Story 4", "John Lasseter", 2017, 123);
-- Toy Story 4 has been released to critical acclaim! It had a rating of 8.7, and made 340 million domestically and 270 million internationally. Add the record to the BoxOffice table.
INSERT INTO Boxoffice
VALUES (4,8.7,340000000,270000000)
-- Exercise 14
-- The director for A Bug's Life is incorrect, it was actually directed by John Lasseter
UPDATE Movies
SET Director="John Lasseter"
WHERE Title ="A Bug's Life";
-- The year that Toy Story 2 was released is incorrect, it was actually released in 1999
UPDATE Movies
SET Year=1999
WHERE Title ="Toy Story 2";
-- Both the title and director for Toy Story 8 is incorrect! The title should be "Toy Story 3" and it was directed by Lee Unkrich
UPDATE Movies
SET Title="Toy Story 3",Director="Lee Unkrich"
WHERE Title ="Toy Story 8";
-- Exercise 15
-- This database is getting too big, lets remove all movies that were released before 2005.
DELETE FROM Movies
WHERE Year<2005;
-- Andrew Stanton has also left the studio, so please remove all movies directed by him.
DELETE FROM Movies
WHERE Director="Andrew Stanton";
-- Exercise 16
-- Create a new table named Database with the following columns:
-- – Name A string (text) describing the name of the database
-- – Version A number (floating point) of the latest version of this database
-- – Download_count An integer count of the number of times this database was downloaded
-- This table has no constraints.
CREATE TABLE Database (
Name TEXT,
Version FLOAT,
Download_count INTEGER);
-- Exercise 17
-- Add a column named Aspect_ratio with a FLOAT data type to store the aspect-ratio each movie was released in.
ALTER TABLE Movies
ADD Aspect_ratio FLOAT DEFAULT 1 ;
-- Add another column named Language with a TEXT data type to store the language that the movie was released in. Ensure that the default for this language is English.
ALTER TABLE Movies
ADD Language TEXT DEFAULT English ;
-- Exercise 18
-- We've sadly reached the end of our lessons, lets clean up by removing the Movies table
DROP TABLE Movies;
-- And drop the BoxOffice table as well
DROP TABLE BoxOffice;