JOIN Quiz - part 2
1. Select the statement which lists the unfortunate directors of the movies which have caused financial loses (gross < budget)
2. Select the correct example of JOINing three tables
3. Select the statement that shows the list of actors called 'John' by order of number of movies in which they acted
4. Select the result that would be obtained from the following code: SELECT title FROM movie, casting, actor WHERE name='Paul Hogan' AND movieid=movie.id AND actorid=actor.id AND ord = 1
5. Select the statement that lists all the actors that starred in movies directed by Ridley Scott
6. Select the statement showing all movies with budget bigger than ALL movie with Harrison Ford is incorrect
7. Select the result that would be obtained from the following code: SELECT title, yr FROM movie, casting, actor WHERE name='Robert De Niro' AND movieid=movie.id AND actorid=actor.id AND ord = 3