gpt4 book ai didi

sql - 如何在 sql 选择查询中将 "0"显示为默认值而不是 "Null"

转载 作者:行者123 更新时间:2023-12-04 13:43:29 24 4
gpt4 key购买 nike

我想在我的选择查询中得到 0 而不是 null。

我的意思是,如果表中没有条目,目前我的查询显示 amount 列为 NULL。

如果 select 查询中的 amount 列为 NULL,我可以得到 0 吗?

最佳答案

你可以这样尝试:

select isnull(column,0)

Can I get 0 for amount column in select query if it has NULL?

是的,你可以得到。如果您将显示您的确切表名和列名,那么这将是您可以尝试的最好的其他方式:-

select isnull(amount,0) as Amount from MyTable

旁注:-

您还可以查看有关 ISNULL 的信息

关于sql - 如何在 sql 选择查询中将 "0"显示为默认值而不是 "Null",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19464951/

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