The exercises for this chapter use a different database than the rest of the chapter. The movies database has two tables, movies and actors. We will be using the movie table (so queries will look like SELECT * from movies). It features the following columns of data:
Write a query to select all of the columns of the movies that are in the genre "Sci-Fi". Many movies have multiple genres, and we want to include every movie where Sci-Fi is anywhere in the list of genres - you will have to use LIKE.
Write a query to select just the title, year, and IMDB score (in that order) of all the movies. Order the results so that the highest IMDB scores come first.
Write a query to find just the title and year of release (in that order) for movies with a Metacritic score of 95 or above. Order the results so that the most recent movie comes first.