Collections:
NULL Values Involved in Bitwise Operations in SQL Server
What Happens If NULL Values Are Involved in Bitwise Operations in SQL Server Transact-SQL?
✍: FYIcenter.com
If NULL values are involved in bitwise operations, the result will be binary NULL values. The following tutorial script shows you some good examples:
SELECT 1 | NULL; GO ----------- NULL SELECT 707 & NULL; GO ----------- NULL SELECT ~NULL; GO ----------- NULL
2017-02-03, 717👍, 0💬
Popular Posts:
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
Where to find answers to frequently asked questions on Oracle Database 10g Express Edition? I want t...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
Where to find answers to frequently asked questions on Managing Security, Login and User in SQL Serv...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...