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