Multiple choice technology databases

Order by clause cannot have aliases of columns....

  1. True

  2. False

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

SQL's ORDER BY clause can use column aliases defined in the SELECT statement. The aliases are created when SELECT processes the columns, making them available to ORDER BY in the same query level. This makes queries more readable by allowing descriptive names instead of expressions or column positions.