QUESTION NO: 10
Which statement is true regarding the outcome of the above query?
A. It produces an error because the ORDER BY clause should appear only at the end of a
compound query-that is, with the last SELECT statement
B. It executes successfully and displays rows in the descending下降 order of PROMO_CATEGORY
C. It executes successfully but ignores the ORDER BY clause because it is not located at the end
of the compound statement
D. It produces an error because positional notation cannot be used in the ORDER BY clause with
SET operators
Answer: A
Explanation:
Using the ORDER BY Clause in Set Operations(运算符)
The ORDER BY clause can appear only once at the end of the compound query(复合查询).
Component queries cannot have individual 个别的ORDER BY clauses.
The ORDER BY clause recognizes only the columns of the first SELECT query.
By default, the first column of the first SELECT query is used to sort the output in an ascending order.
在复合查询中,order by 语句只能出现再最后,不能又个别的order by 语句。
默认情况下,第一个查询中第一个列用来降序存储输出。