Siempre estoy desconcertado con respecto a algún comportamiento misterioso de t-sql, como el siguiente
-- 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
No se trata de cómo recuperar todas las filas de una tabla y tampoco se trata de evitar el uso de ANSI_NULLS.
Solo quiero solicitar algunas ideas de por qué t-sql se comporta así.