ฉันมักจะสับสนเกี่ยวกับพฤติกรรม 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 ทำงานแบบนี้