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?