标签: php mysql sql-order-by
我的数据库表产品中有两列。
price discountpercent 100 10 200 70
我的查询
SELECT * FROM products order by ?
我如何以优惠价格订购?
答案 0 :(得分:1)
使用:
ORDER BY price * (100 - discountpercent) / 100
Demo here