1. Which clause is written first in a SQL statement but executed much later by the database engine?
- FROM
- SELECT
- WHERE
- ORDER BY
Hint: SELECT appears first syntactically, but it is executed near the end of the query lifecycle (after sourcing, filtering, and grouping).