SQL - Structured Query Language

Bitwise Operators



An operator is a symbol specifying an action that is performed on one or more expressions. SQL Server operators can categories into Arithmetic Operators, Assignment Operator, String Concatenation Operator, Comparison Operators, Bitwise Operators, Unary Operators, Compound Operators, Scope Resolution Operator, Logical Operators and SET Operators.

Bitwise operators are used to checks a bitwise logical condition between two expressions values that returns TRUE or FALSE Boolean data.

Symbol Name Description
& Bitwise AND To returns TRUE when both expressions are TRUE.
| Bitwise OR To returns TRUE when one expression is TRUE.
^ Bitwise Exclusive OR To returns TRUE when both expressions are FALSE.

* * * * *


Email Your Comment To AUTHOR