Ordering by likes
The marketing team loved your organized film list! So much so, they've recommended you to their peers for another project.
This new project is about analyzing the catalog to see which films are the most highly rated on IMDb, with the highest score at the top so they can quickly decide which titles to highlight or promote. The results will display film IDs, which the team can plug into their own systems.
This exercise is part of the course
Intermediate SQL with AI
Exercise instructions
- Write a prompt to show film ids with their IMDb score, sorted by highest score first.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
SELECT *
FROM reviews;