CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Intermediate SQL with AI

Afficher le cours

Instructions

  • Create a prompt that shows, for each release year, the lowest and highest duration, and have the highest duration show first.

Exercice interactif pratique

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

SELECT release_year
FROM films;
Modifier et exécuter le code