Step 1: Explore the dataset Question 1: How many movies are in this dataset? SELECT COUNT(*) FROM titles WHERE type = 'MOVIE'; Question 2: How many TV shows are in this dataset? SELECT COUNT(*) FROM titles WHERE type = 'SHOW';