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

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

    Which two tasks would require subqueries or joins to be executed in a single statement? (Choose two.) 

    A. listing of customers who do not have a credit limit and were born before 1980

    B. finding the number of customers, in each city, whose marital status is 'married'

    C. finding the average credit limit of male customers residing in 'Tokyo' or 'Sydney'

    D. listing of those customers whose credit limit is the same as the credit limit of customers residing in the

    city 'Tokyo'

    E. finding the number of customers, in each city, whose credit limit is more than the average credit limit of

    all the customers

    Answer: DE

    答案解析:

    参考:http://blog.csdn.net/rlhua/article/details/12879585

    ABC不用子查询就可以查询出,题意选择两个,排除ABC,选择DE


    A. 列出没有信贷限额并且1980年以前出生的客户。

    SELECT 客户 from 表名 where 信贷限额 is null and 出生日期>1980;


    B. 查找每个城市的已婚客户的数量。
    SELECT 城市名,COUNT(*) FROM 表名 where 客户婚否=‘结婚’ group by 城市名;

    C. 查找属于'Tokyo'或者 'Sydney'两个城市的男性客户的平均信贷限额。
    SELECT 城市名, AVG(信贷限额) from 表名 where 性别=‘男’ and 城市 in('Tokyo', 'Sydney') group by 城市名

    D 列出与'Tokyo'城市的客户的信贷限额相等的客户
    E. 查找每个城市的客户数量,这些客户的信贷限额大于所有客户的平均信贷限额。


  • 相关阅读:
    hdu1078 记忆化dfs
    hdu1142 dij+记忆化深搜
    UVA 11374 dijkstra预处理+枚举
    poj1502 单源最短路径
    hdu1814 2-SAT 暴力搜
    macos 10.15.1 pip3安装提示权限不足
    将安装器信息下载到目标卷宗失败
    Mac修改默认python版本
    努力吧,少年
    Implement strStr() 字符串匹配
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316812.html
Copyright © 2011-2022 走看看