ComeçarComece de graça

Counting films by budget range

You are analyzing the distribution of film budgets since the year 2000. You want a yearly breakdown of how many films fall into three budget tiers: over 100 million, between 20 and 100 million, and under 20 million. You also want to see only years with enough data points to be reliable. Approach this problem step by step.

Este exercício faz parte do curso

Intermediate SQL with AI

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

SELECT
  release_year
FROM films
GROUP BY release_year
ORDER BY release_year;
Editar e executar o código