Instruction
Remember the previous part, part 7? This is where we combined ORDER BY with PARTITION BY:
SELECT title, release_year, LEAD(title) OVER(PARTITION BY genre ORDER BY release_year) FROM movie;
In the above example, the last column will show the next movie that was released with the same genre.
Exercise
For each movie, show its title, genre, editor_rating and its rank based on editor_rating for all the movies in the same genre.
Stuck? Here's a hint!
You'll need PARTITION BY genre ORDER BY editor_rating DESC.



