ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Intermediate SQL with AI

Ver curso

Instrucciones del ejercicio

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

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

SELECT *
FROM films;
Editar y ejecutar código