Multiple choice sql

Which SQL keyword is used to sort the result-set?

  1. SORT BY

  2. ORDER

  3. ORDER BY

  4. SORT

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

ORDER BY is the standard SQL clause used to sort query results in ascending or descending order. SORT BY and SORT are not valid SQL keywords for this purpose.