gpt4 book ai didi

php - 如果某些产品有折扣价(SQL),如何按价格对产品进行排序?

转载 作者:行者123 更新时间:2023-12-01 00:04:00 27 4
gpt4 key购买 nike

所以我想按价格订购产品 - ASCDESC,但有些产品将有一个 discountprice 列数据库已填写,如果是 - 应该考虑它们而不是 price 字段。

所以目前我有这个:SELECT * FROM products ORDER BY price ASC,但我怎样才能附加类似 if (discountprice != '' AND discountprice != NULL) then use discount price 的内容该特定产品的 ORDER 条款?

最佳答案

你可以这样做:

SELECT (price-IFNULL(discountprice,0)) as finalprice FROM products
ORDER BY finalprice ASC

如果您尝试通过 discountprice 列进行订购,您可以通过两种方式进行:

  1. 使用 IFNULL:

    SELECT * FROM products
    ORDER BY IFNULL(discountprice, price) ASC
  2. 使用合并:

    SELECT * FROM products
    ORDER BY COALESCE(discountprice, price) ASC

关于php - 如果某些产品有折扣价(SQL),如何按价格对产品进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30703349/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com