参考答案: B
详细解析:
并列条件查询使用关键字and即可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即可