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.
This exercise is part of the course
Intermediate SQL with AI
Exercise instructions
- Write a prompt to list film titles, years, and budgets, sorted by budget (lowest first) and then by release year (latest first).
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
SELECT title
FROM films;