Sorting & limiting
Exercise · SQL & Querying

Predict, then run it

Predict the output

setlist(song, bpm) = (adagio,200),(brindisi,120). Sort by tempo, fastest first — name the column so an edit can't break it:

SELECT bpm, song FROM setlist ORDER BY bpm DESC;

Predict the exact output.