gpt4 book ai didi

sql - 等于一是什么意思 - ISNULL (something, 1) = 1

转载 作者:行者123 更新时间:2023-12-05 08:17:12 25 4
gpt4 key购买 nike

我有以下代码。

.....
.....
WHERE 0 = 0
AND Isnull(something, 1) = 1
....
....

我知道 isnull 函数会查看某些内容,如果它是 null,则将其替换为 1。但是 =1 究竟代表什么,它是什么意思?

我在 Microsoft SQL Server 中工作,代码是 Coldfusion。

最佳答案

你的查询 Isnull(something, 1) = 1 是说要返回 something ,它只有 null1

我会重写它使其可搜索:

WHERE (something IS NULL OR something = 1)

关于sql - 等于一是什么意思 - ISNULL (something, 1) = 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53316006/

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