CommencerCommencer gratuitement

Ordering by multiple criteria

You're interested in exploring the film catalog to surface fresh recommendations to film fans. You want to give independent films that have a lower-budget a chance to stand out. When budgets are similar, newer releases should appear higher in the list to highlight the most recent additions.

Cet exercice fait partie du cours

Intermediate SQL with AI

Afficher le cours

Instructions

  • Write a prompt to list film titles, years, and budgets, sorted by budget (lowest first) and then by release year (latest first).

Exercice interactif pratique

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

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