Bit Operators : Bit « Function « SQL / MySQL
- SQL / MySQL
- Function
- Bit
Bit Operators
Operator Syntax Description
& a & b Bitwise AND
| a | b Bitwise OR
<< a << b Left shift of a by b bit positions
>> a >> b Right shift of a by b bit positions
Related examples in the same category