1. Learn
  2. /
  3. Courses
  4. /
  5. Intermediate SQL

Connected

Exercise

Learning to COUNT()

You saw how to use COUNT() in the video. Do you remember what it returns?

Here is a query counting film_id. Select the answer below that correctly describes what the query will return.

SELECT COUNT(film_id) AS count_film_id
FROM reviews;

Run the query in the console to test your theory!

Instructions

50 XP

Possible answers