Minimum and maximum
You're completing your executive report by adding duration ranges to provide full context for each year's content. After showing averages and totals, the minimum and maximum durations help executives understand the breadth of content available, whether a year offers diverse duration options or clusters around similar lengths.
Este ejercicio forma parte del curso
Intermediate SQL with AI
Instrucciones del ejercicio
- Create a prompt that shows, for each release year, the lowest and highest duration, and have the highest duration show first.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
SELECT release_year
FROM films;