题目内容

在大数据计算服务(MaxCompute,原ODPS)SQL中可以用逻辑运算连接多个条件,以下逻辑运算结果正确的有()

A. True or null = true
B. False or false= False
C. True and false=false
D. True and True= True
E. NULL and False= NULL

查看答案
更多问题

大数据计算服务中,表ods_sale_detail存放的是销售明细记录,建表语句如下:createtableods_sale_detail(sale_datedatetime,regionstring,amtdecima其中sale_date字段表示销售的日期,amt表示销售金额,想要找出所有汇总销售额大于10000的日期以及当日的销售额,以下哪几个SQL可以达到这个目的?()

A. select sale_date, sum(amt) from ods_sale detail group by sale_date where amt>10000
B. select sale_date, sum(amt) from ods_saledetail group by sale_date where sum(amt)10000
C. select sale_date, sum(amt) from ods_sale detail group by sale_date having sum(amt)> 10000
D. select* from(select sale_date,sum(amt)s_amt from sale_date group by sale_date)sub where s_ amt> 10000

ODPS通过elipseplugin提供了MR的编程框架,开发时通常需要添加以下哪几个类()

A. Reducer
B. mapreduce driver
C. combiner
D. Mapper

在大数据计算服务(maxcommute,原ODPs)SQL中,可以通过哪几种语句处理表中的数据?()

A. UPDATE
B. DELETE
C. INSERT OVERWRITE
D. INSERT INTO

大数据计算服务MaxCompute原ODPS中的用户基本信息表dim_user和扩展信息表dim_user_ext都有一个整型字段user_id(业务上该字段的每个取值都唯一标识一条用户记录)。表dim_user中共有10000条记录,其中user_id从2000到11999,dim_user_ext表中共有5000条记录,其中user_id从0到4999。开发人员在建立用户模型时需要获取既有用户

A. 使用内关联: select1.*,t2.*from dim_user t1 join dim_user ext t2 on t.user_id=t2. user_id
B. 使用左关联: selects1.,t2.*from dim_user t1 left join dim_user ext t2 on t1.user_id=t2 user_id
C. 使用右关联: select t1.*,t2.*from dim_user t1 right join dim_user ext t2 on t1. user_ id=t2. user_ id
D. 使用全关联: select t1.*,t2.+from dim_user t1 full outer join dim_user.ext t2

答案查题题库