大数据计算服务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
查看答案
该试题由用户142****34提供
查看答案人数:22270
如遇到问题请
联系客服
正确答案
该试题由用户142****34提供
查看答案人数:22271
如遇到问题请联系客服