我总是对某些神秘的t-sql行为感到困惑,如下所示
-- Create table t and insert values.
use tempdb
CREATE TABLE dbo.t (a INT NULL);
-- insert 3 values
INSERT INTO dbo.t values (NULL),(0),(1);
GO
set ansi_nulls off -- purposely turn off, so we can allow NULL comparison, such as null = null
go
-- expect 3 rows returned but only 2 returned (without null value row)
select * from dbo.t where a = a
这与如何检索表中的所有行无关,也与避免使用ANSI_NULLS无关。
我只想征集一些见解,以了解为什么t-sql会如此表现。