题解 | #返回产品并且按照价格排序#
返回产品并且按照价格排序
https://www.nowcoder.com/practice/560c94bf434e4e77911982e2d7ca0abb
select prod_name,prod_price from Products where prod_price >=3 and prod_price <=6 order by prod_price;
返回产品并且按照价格排序
https://www.nowcoder.com/practice/560c94bf434e4e77911982e2d7ca0abb
select prod_name,prod_price from Products where prod_price >=3 and prod_price <=6 order by prod_price;
相关推荐