gpt4 book ai didi

mysql - 如何使用 MySQL 按折扣列排序?

转载 作者:行者123 更新时间:2023-11-29 11:34:26 26 4
gpt4 key购买 nike

我有 MySQL 列 pricediscountPrice,我需要能够按 price 对产品进行排序,并且:

IF discountPrice is NOT empty AND is NOT NULL AND is LESS THAN price
order product by discountPrice

这有可能吗?

最佳答案

您可以将此类逻辑放在order by中。假设 discountPrice 是数字,则简化为:

order by (case when discountPrice < price then discountPrice else Price end)

关于mysql - 如何使用 MySQL 按折扣列排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36848742/

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