In SQL Server, the following bitwise operators can be used:
&(bitwise AND)|(bitwise OR)^(bitwise exclusive OR)
MySQL provides the following bitwise operators:
&(Bitwise AND)~(Invert bits)|(Bitwise OR)^(Bitwise XOR)<<(Left shift)>>(Right shift)