~
Invert all bits. This unary operator flips every bit in the operand, changing 1s to 0s and 0s to 1s.
Syntax
~Description
Examples
SELECT 3 & ~1;
+--------+
| 3 & ~1 |
+--------+
| 2 |
+--------+
SELECT 5 & ~1;
+--------+
| 5 & ~1 |
+--------+
| 4 |
+--------+See Also
Last updated
Was this helpful?

