gpt4 book ai didi

sql - 为什么 NULL = NULL 在 SQL Server 中计算结果为 false

转载 作者:行者123 更新时间:2023-12-01 16:40:13 24 4
gpt4 key购买 nike

在 SQL Server 中,如果 where 子句中有 nullParam=NULL,则其计算结果始终为 false。这是违反直觉的,给我带来了很多错误。我确实知道 IS NULLIS NOT NULL 关键字是正确的方法。但为什么 SQL Server 会这样呢?

最佳答案

在这种情况下,将 null 视为“未知”(或“不存在”)。在这两种情况下,您都不能说它们相等,因为您不知道它们的值。因此,null=null 的计算结果为 false(false 或 null,具体取决于您的系统),因为您不知道表示它们相等的值。此行为在 ANSI SQL-92 标准中定义。

编辑:这取决于你的ansi_nulls环境。如果你关闭了 ANSI_NULLS,这将评估为 true。运行以下代码作为示例...

set ansi_nulls off

if null = null
print 'true'
else
print 'false'


set ansi_nulls ON

if null = null
print 'true'
else
print 'false'

关于sql - 为什么 NULL = NULL 在 SQL Server 中计算结果为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1843451/

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