Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 357 Bytes

Step 1.md

File metadata and controls

21 lines (15 loc) · 357 Bytes

Step 1: Explore the dataset

Question 1: How many movies are in this dataset?

SELECT COUNT(*)
FROM titles
WHERE type = 'MOVIE';

Step 1 Q1 Result

Question 2: How many TV shows are in this dataset?

SELECT COUNT(*)
FROM titles
WHERE type = 'SHOW';

Step 1_Q2_Result