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 exercício faz parte do curso
Intermediate SQL with AI
Instruções do exercício
- Create a prompt that shows, for each release year, the lowest and highest duration, and have the highest duration show first.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
SELECT release_year
FROM films;