gpt4 book ai didi

mysql - 如果存在 null 值,SUM 函数将返回 null

转载 作者:行者123 更新时间:2023-11-29 17:13:58 32 4
gpt4 key购买 nike

我有这个查询

SELECT (SELECT cost FROM table1 t2 WHERE t2.edate=>table1.edate) AS cost
FROM table1
WHERE table1.orderNo = 'CS119484568'

以上查询返回:

cost
4
3
null
null
5

如果任何行有空值,我想获得全部的总和或空值

SELECT SUM((SELECT cost FROM table1 t2 WHERE t2.edate=>table1.edate)) AS cost
FROM table1
WHERE table1.orderNo = 'CS119484568'

上述情况下的预期结果为 NULL。

最佳答案

这是我的尝试:

SELECT
(SELECT
case when count(*)=count(cost) then sum(cost) else null end
FROM table1 t2
WHERE t2.edate=>table1.edate
) AS cost
FROM table1
WHERE table1.orderNo = 'CS119484568'

这是基于 count() 仅计算非空值这一事实。

关于mysql - 如果存在 null 值,SUM 函数将返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51736297/

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