Multiple choice technology databases

We can sort by a column without present in the SELECT List

  1. True

  2. False

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

This statement is TRUE in Oracle SQL. You can ORDER BY columns that are not in the SELECT list - the sorting is performed before the final projection. This allows sorting by attributes you don't need to display, which is valid SQL syntax.