Checkpoint 29.8.2.
Write a query to select the year and title of each movie (put them in that order, so that the year appears first).
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:
| Column Name | Description |
|---|---|
| id | A unique number for each record |
| imdb_id | The id of the movie in the Internet Movie DataBase (IMDB) |
| title | Title fo the movie |
| director | Name of the director |
| year | Year (number) the movie was released |
| rating | Rating (R, PG, etc…) |
| genres | Comma-separated list of genres |
| runtime | Length in minutes |
| country | Comma separated list of countries it was released in |
| language | Comma separated list of languages it was released in |
| imdb_score | Score of movie (1-10) in IMDB |
| imdb_votes | Number of ratings for the movie in the IMDB |
| metacritic_score | Score of movie (1-100) on the Metacritic website |
"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.