Oracle Database Administration I — Question 14

Which two statements are true about the ORDER BY clause when used with a SQL statement containing a SET operator such as UNION? (Choose two.)

Answer options

Correct answer: B, C

Explanation

Option B is correct because only the column names from the first SELECT statement are considered in the ORDER BY clause when using UNION. Option C is also correct since, without an ORDER BY clause, the first column of the first SELECT is used for sorting by default. Options A, D, and E are incorrect because they imply requirements that do not apply to the use of ORDER BY with UNION.