Invitation
What if the correct records are in the wrong order?
SELECT chooses the fields. FROM chooses the table. WHERE may filter the records.
ORDER BY then sorts the records in the output using one chosen field.
ORDER BY sorts the output.
How ORDER BY changes the output
81 · 65 · 90 · 72
↓
ORDER BY Score
↓
65 · 72 · 81 · 90