SQL Server, ANSI SQL; -)
NULL SQL IEEE NaN : NaN != NaN NaN == NaN . IS NULL SQL ( "IsNaN" IEEE FP). ( : IS NULL/"IsNaN" - .)
NULL = x : NULL =/<> x . , NULL UNKNOWN. , NOT(NULL = '') NULL UNKNOWN ( "false" - - . ). SQL ; -)
SQL Server, : "SET ANSI_NULLS OFF" - . / - "" TSQL.
"" ( ):
SET ANSI_NULLS OFF;
select 'eq' where null = '';
select 'ne' where null <> '';
select 'not' where not(null = '');
ANSI-NULL ( , , ):
SET ANSI_NULLS ON;
select 'eq' where null = '';
select 'ne' where null <> '';
select 'not' where not(null = '');
.
user166390