Get startedGet started for free

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.

This exercise is part of the course

Intermediate SQL with AI

View Course

Hands-on interactive exercise

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

SELECT
  language,
  AVG(duration) AS avg_duration
FROM films
WHERE duration IS NOT NULL
GROUP BY language;
Edit and Run Code