我们在网页上显示不同产品的表格我想首先显示最低价格而不是<> 0和联合价格= 0然后 使用ASC订单加入最高价格。我尝试用很多查询来做。但是可以在一个查询中做到吗?
答案 0 :(得分:2)
获得最低价格,你可以使用它,
select itemcode, price from item where price>0 order by price asc limit 1
记录是最低的,最高价格,将“ASC”更改为“DESC”
答案 1 :(得分:0)
你可以试试这个
select top * (price) from table
where price>=0
order by price