4
Auto-comparação de valor NULL em uma tabela
Estou sempre intrigado com algum comportamento misterioso do t-sql, como o seguinte -- 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, …