Multiple choice technology databases

Order by – clause comes last in select statement

  1. True

  2. False

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

In SQL SELECT statement syntax, ORDER BY is indeed the final clause. The standard order is: SELECT → FROM → WHERE → GROUP BY → HAVING → ORDER BY. This makes sense logically because you must first determine which rows and columns you're working with before sorting them.