zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    Yarn
    easyui
    eclipse-android
    js-小技能 そうですか
    sql server 时间处理
    上传文件
    时间 & 时间戳 之间 转换
    JDIC
    Spring 定时器
    映射
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316906.html
Copyright © 2011-2022 走看看