如何以折扣价格使用订单

时间:2016-03-09 16:56:25

标签: php mysql sql-order-by

我的数据库表产品中有两列。

price   discountpercent    
100     10    
200     70

我的查询

 SELECT * FROM products order by ?

我如何以优惠价格订购?

1 个答案:

答案 0 :(得分:1)

使用:

ORDER BY price * (100 - discountpercent) / 100

Demo here