2.Give year of ‘Citizen Kane’.
select yr
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.
select id,title,yr
from movie
where title like '%Star Trek%'
order by yr;
4.What id number does the actor ‘Glenn Close’ have?
select id
from actor
where name='Glenn Close';
5.What is the id of the film ‘Casablanca’
select id
from movie
where title='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 join (movie join casting on id=movieid)
on actor.id=actorid
where title='Casablanca';
7.Obtain the cast