zoukankan      html  css  js  c++  java
  • OCP-1Z0-051-V9.02-115题

    115. View the Exhibit and examine the structure of the CUSTOMERS table.

    Evaluate the following SQL statement:

    SQL> SELECT cust_city, COUNT(cust_last_name)

    FROM customers

    WHERE cust_credit_limit > 1000

    GROUP BY cust_city

    HAVING AVG(cust_credit_limit) BETWEEN 5000 AND 6000;

    Which statement is true regarding the outcome of the above query?

    A. It executes successfully.

    B. It returns an error because the BETWEEN operator cannot be used in the HAVING clause.

    C. It returns an error because WHERE and HAVING clauses cannot be used in the same SELECT

    statement.

    D. It returns an error because WHERE and HAVING clauses cannot be used to apply conditions on the

    same column.

    Answer: A

    答案解析:

    sh@TEST0924> SELECT cust_city, COUNT(cust_last_name) FROM customers
      2  WHERE cust_credit_limit > 1000
      3  GROUP BY cust_city
      4  HAVING AVG(cust_credit_limit) BETWEEN 5000 AND 6000;
     
    CUST_CITY                      COUNT(CUST_LAST_NAME)
    ------------------------------ ---------------------
    Joinville                                         98
    Neuss                                            241
    Clermont-l'Herault                      202
    Ingolstadt                                     159
     
    ...
    Sliedrecht                                                      17
     
    207 rows selected.
  • 相关阅读:
    学会用google吧,,,
    HDU 2120 Ice_cream's world I
    ZOJ 3471 Most Powerful (状压DP)
    POJ 2192 Zipper
    我的闪存汇总
    Python For Delphi更好地协同(续)
    Python For Delphi更好地协同
    官方的正则表达式组件 RegularExpressions : 基本应用(转自万一博客)
    Thread: DataSnap detect disgraceful disconnect
    window7下安装IPython
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13317174.html
Copyright © 2011-2022 走看看