列表

详情


大数据计算服务(MaxCompute, 原ODPS)中,product 表的结构如下: create table product(product name string,product brand string,product color string,price double);想找出红色(product_color='red') 并且售价大于100 (price>100) 的数据,可以用__


A. select * from product where product_color='red' & price>100;

B. select * from product where product_color='red' and price>100;

C. select * from product where product_color='red' or price>100;

D. select * from product where product_color='red' | price> 100;

参考答案: B

详细解析:

并列条件查询使用关键字and即可


上一题