OCP-1Z0-051-V9.02-65题

65. View the Exhibit and examine the structure of the CUSTOMERS table.
You have been asked to produce a report on the CUSTOMERS table showing the customers details
sorted in descending order of the city and in the descending order of their income level in each city. 
Which query would accomplish this task?
A. SELECT cust_city, cust_income_level, cust_last_name
FROM customers
ORDER BY cust_city desc, cust_income_level DESC ;
B. SELECT cust_city, cust_income_level, cust_last_name
FROM customers
ORDER BY cust_income_level desc, cust_city DESC;
C. SELECT cust_city, cust_income_level, cust_last_name
FROM customers
ORDER BY (cust_city, cust_income_level) DESC;
D. SELECT cust_city, cust_income_level, cust_last_name
FROM customers
ORDER BY cust_city, cust_income_level DESC;
Answer: A
答案解析:
根据题意:sorted in descending order of the city and in the descending order of their income level in each city.
是按照城市的降序来排列,并且在每个城市中按照income level的降序来排列。
即先 cust_city desc再cust_income_level DESC

原文地址:https://www.cnblogs.com/hzcya1995/p/13316906.html