gpt4 book ai didi

Postgresql - 求和时如何将 NaN 视为 0?

转载 作者:行者123 更新时间:2023-11-29 14:28:56 30 4
gpt4 key购买 nike

我有一个包含数值和 NaN 的表格。求和时,如果所选值包含 NaN,则结果将为 NaN。有没有办法让 postgresql 在求和时将它们视为 0 而不是 NaN?或者我只需要将表中的所有 NaN 转换为 0 或 Null?

最佳答案

使用NULLIF , 例子:

with my_table(col) as (
values
(1::numeric),(2),('NaN')
)

select sum(col) as original, sum(nullif(col, 'NaN')) as corrected
from my_table;

original | corrected
----------+-----------
NaN | 3
(1 row)

关于Postgresql - 求和时如何将 NaN 视为 0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54542197/

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