2669. Count Artist Occurrences On Spotify Ranking List ¶ SQL 1 2 3 4 5 6SELECT artist, COUNT(id) AS occurrences FROM Spotify GROUP BY 1 ORDER BY 2 DESC, 1;