Get startedGet started for free

Films with missing data

The finance team is reviewing film performance reports. During their checks, they notice that some gross and budget records are incomplete. Since this missing information could affect their analysis, they need a list of all films where both values are not recorded to prioritize these for investigation.

This exercise is part of the course

Intermediate SQL with AI

View Course

Exercise instructions

  • Set up a prompt that retrieves all films with missing values for both gross and budget.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

SELECT *
FROM films;
Edit and Run Code