Sono sempre perplesso riguardo un comportamento misterioso di t-sql, come il seguente
-- 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
Non si tratta di come recuperare tutte le righe in una tabella e nemmeno di evitare l'uso di ANSI_NULLS.
Voglio solo sollecitare alcune intuizioni sul perché t-sql si comporti in questo modo.