4
테이블에서 NULL 값 자체 비교
나는 항상 다음과 같은 신비한 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 …