Examine the description of the MEMBERs table:
Name Null type
-----------------------------------------------------
MEMBER_ID NOT NULL VARCHAR2(6)
FIRST_NAME VARCHAR2(50)
LAST_NAME NOT NULL VARCHAR2(50)
ADDRESS VARCHAR2(50)
CITY VARCHAR2(25)
Examine the partial query:
Select city, last_name LNAME from members ....;
You want to display all cities that contain the string AN. The cities must be returned in ascending
Order with the last names further sorted in descending order.
Which two clauses must you add to the query?
A.ORDER BY 1, LNAME DESC B.ORDER BY1, 2 C.WHERE city IN (‘%AN%’) D.WHERE city= ‘%AN%’ E.WHERE city LIKE ‘%AN%’ F.ORDER BY last name DESC, city ASC正确答案AE