gpt4 book ai didi

MySQL SUM 通过 if 语句

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

我的 MySQL 表 typesumcustom_sum 中有 3 列,其中 custom_sum 可以为空,我一直在修改查询

SELECT `type`, SUM(`sum`) FROM `localhost-test` GROUP BY `type`

如果 custom_sum 为空,我需要在 SUM() 中使用 sum,并使用 custom_sum如果不是。是否可以根据 mysql 中的“if”语句按不同列求和?

最佳答案

如果 custom_sum 值为 null :

SELECT 
`u.type`,
SUM(COALESCE(`custom_sum`,`sum`))
FROM
`localhost-test`
GROUP BY
`type`

如果 custom_sum 值为 (=='') :

 SELECT 
`u.type`,
SUM(CASE WHEN `custom_sum` = '' THEN `sum` ELSE `custom_sum` END)
FROM
`localhost-test`
GROUP BY
`type`

关于MySQL SUM 通过 if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23213804/

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