movie data
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
This tutorial introduces the notion of a join. The database consists of three tablesmovie
,actor
andcasting
.
movie:
id
title
yr
director
budget
gross
actor:
id
casting:
movieid
actorid
ord
List the films where the yr is 1962 [Show id, title]
SELECT id, title
FROM movie
WHERE yr=1962;
Give year of 'Citizen Kane'.
SELECT yr
FROM movie
WHERE title = 'Citizen Kane';
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.
SELECT id, title, yr
FROM movie
WHERE title LIKE '%Star Trek%'
ORDER BY yr;
What id number does the actor 'Glenn Close' have?
SELECT id
FROM actor
WHERE name = 'Glenn Close';
What is the id of the film 'Casablanca'
SELECT id
FROM movie
WHERE title = 'Casablanca';
Obtain the cast list for 'Casablanca'.
Use movieid=11768, (or whatever value you got from the previous question)
SELECT name
FROM casting
INNER JOIN actor ON actorid = id
WHERE movieid = 11768;
Obtain the cast list for the film 'Alien'
SELECT name
FROM casting
INNER JOIN actor ON actorid = actor.id
WHERE movieid =
(
SELECT id
FROM movie
WHERE title='Alien'
);
List the films in which 'Harrison Ford' has appeared
SELECT title
FROM movie JOIN casting
ON id = movieid
WHERE actorid =
(
SELECT id
FROM actor
WHERE name = 'Harrison Ford'
);
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
JOIN casting ON id = movieid
WHERE actorid =
(
SELECT id
FROM actor
WHERE name = 'Harrison Ford'
)
AND ord != 1;
List the films together with the leading star for all 1962 films.
SELECT title, name
FROM movie
JOIN casting ON movie.id = movieid
JOIN actor ON actor.id = actorid
WHERE yr = 1962 AND ord = 1;
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.
# using subquery to get the id of John Travolta
SELECT yr, COUNT(title)
FROM movie
JOIN casting ON id = movieid
WHERE actorid = (
SELECT id
FROM actor
WHERE name = 'John Travolta'
)
GROUP BY yr
HAVING COUNT(title)>2;
# use 2 inner join
SELECT yr, count(title)
FROM casting JOIN actor ON actorid = actor.id
JOIN movie ON movie.id = movieid
WHERE name = 'John Travolta'
GROUP BY yr
HAVING count(title) > 2
ORDER BY yr;
List the film title and the leading actor for all of the films 'Julie Andrews' played in.
# use join and subquery
SELECT title, name
FROM movie
JOIN casting ON movie.id = movieid
JOIN actor ON actor.id = actorid
WHERE movieid IN (
SELECT movieid
FROM casting
WHERE actorid = (
SELECT id
FROM actor
WHERE name = 'Julie Andrews'
)
)
AND ord = 1;
# use inner join and self join
SELECT distinct title, a1.name
FROM casting as c1
JOIN movie ON movie.id = c1.movieid
JOIN actor as a1 ON c1.actorid = a1.id
JOIN casting as c2 ON c1.movieid = c2.movieid
JOIN actor as a2 ON c2.actorid = a2.id
WHERE a2.name = 'Julie Andrews' and c1.ord = 1;
Obtain a list, in alphabetical order, of actors who've had at least 30 starring roles.
SELECT name
FROM casting JOIN actor ON actorid = actor.id
WHERE ord = 1
GROUP BY name
HAVING count(movieid) >= 30
ORDER BY name;
List the films released in the year 1978 ordered by the number of actors in the cast, then by title.
SELECT title, COUNT(actorid)
FROM movie
JOIN casting ON id = movieid
WHERE yr = 1978
GROUP BY title
ORDER BY COUNT(actorid) DESC, title;
List all the people who have worked with 'Art Garfunkel'.
# use inner join and subquery
SELECT DISTINCT name
FROM casting
JOIN actor ON (actorid = id AND name != 'Art Garfunkel')
WHERE movieid IN
(
SELECT movieid
FROM casting
WHERE actorid = (
SELECT id
FROM actor
WHERE name = 'Art Garfunkel'
)
);
# use inner join and self join
SELECT distinct a1.name
FROM casting as c1
JOIN actor as a1 ON c1.actorid = a1.id
JOIN casting as c2 ON c1.movieid = c2.movieid and c1.actorid != c2.actorid
JOIN actor as a2 ON c2.actorid = a2.id
WHERE a2.name = 'Art Garfunkel'
ORDER BY a1.name;