Multiple choice technology databases

Order by cause should be used only at end of query

  1. True

  2. False

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

ORDER BY must be the last clause in a SELECT query. It can only appear after SELECT, FROM, WHERE, GROUP BY, and HAVING clauses. This is because ORDER BY operates on the final result set after all filtering, joining, and aggregation has been performed.