Order by – clause comes last in select statement
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.