题解 | #检索并列出已订购产品的清单#
检索并列出已订购产品的清单
https://www.nowcoder.com/practice/674d99a46a96494d8267ae4d162ed459
select order_num,prod_id,quantity from OrderItems where quantity>=100 and prod_id between 'BR01' and 'BR03';
其实感觉这种连续的用between and会快一些
检索并列出已订购产品的清单
https://www.nowcoder.com/practice/674d99a46a96494d8267ae4d162ed459
select order_num,prod_id,quantity from OrderItems where quantity>=100 and prod_id between 'BR01' and 'BR03';
其实感觉这种连续的用between and会快一些
相关推荐