4
Giá trị tự so sánh NULL trong một bảng
Tôi luôn bối rối về một số hành vi t-sql bí ẩn, như sau -- 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 …