题解 | 返回产品并且按照价格排序
select prod_name,prod_price from Products where prod_price between 3 and 6 order by prod_price; // between and 和 order by 不用逗号分隔
select prod_name,prod_price from Products where prod_price between 3 and 6 order by prod_price; // between and 和 order by 不用逗号分隔
相关推荐