CommencerCommencer gratuitement

Filtering totals

Longer films need more subtitle capacity. You'll identify languages with the longest average durations to forecast this effort and help the team allocate resources more efficiently. By focusing on languages with consistently long films in recent years, the company can plan budgets and staffing with fewer surprises. You'll have part of the query ready for you, your job is to iterate on it to add the appropriate filters.

Cet exercice fait partie du cours

Intermediate SQL with AI

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

SELECT
  language,
  AVG(duration) AS avg_duration
FROM films
WHERE duration IS NOT NULL
GROUP BY language;
Modifier et exécuter le code