Collections:
NULL Values Involved in Boolean Operations in SQL Server
What Happens If NULL Values Are Involved in Boolean Operations in SQL Server Transact-SQL?
✍: FYIcenter.com
If NULL values are involved in Boolean operations, the result will vary depending on the operator type. For AND operator, FALSE takes precedence over NULL. The result can be summarized in a table below:
AND TRUE FALSE NULL TRUE true false null FALSE false false false NULL null false null
For OR operator, TRUE takes precedence over NULL. The result can be summarized in a table below:
OR TRUE FALSE NULL TRUE true true true FALSE true false null NULL true null null
The tutorial script below shows you that NULL AND FALSE returns FALSE:
IF 0=NULL AND 0=1 PRINT 'NULL AND FALSE returns TRUE' ELSE PRINT 'NULL AND FALSE does not returns TRUE' GO NULL AND FALSE does not returns TRUE IF NOT (0=NULL AND 0=1) PRINT 'NULL AND FALSE returns FALSE' ELSE PRINT 'NULL AND FALSE does not returns FALSE' GO NULL AND FALSE returns FALSE
⇒ "IS NULL" - Testing NULL Values in SQL Server
⇐ NULL Values Involved in Comparison Operations in SQL Server
2017-02-03, 2316🔥, 0💬
Popular Posts:
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...