Page 1 of 1

Examine the description of the MEMBERS table:Examine the partial query:SELECT city, last_name AS lname FROM members ...;

Posted: Sun Jun 11, 2023 3:54 pm
by answerhappygod
Examine the description of the MEMBERS table:Examine the partial query:SELECT city, last_name AS 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? (Choose two.)
Examine The Des 1
Examine The Des 1 (40.89 KiB) Viewed 116 times
A. ORDER BY 1, 2
B. ORDER BY 1, lname DESC
C. WHERE city IN ('%AN%')
D. WHERE city = '%AN%' E. WHERE city LIKE '%AN%' F. ORDER BY last_name DESC, city ASC