—24) Write a query that returns all rows from 2010 ordered by rank, with artists ordered alphabetically for each song.
SELECT *
FROM tutorial.billboard_top_100_year_end
WHERE year = 2010
ORDER BY year_rank, artist ASC
For this the artist are not ordered in alphabetical order.