~
Syntax
~
Description
Bitwise NOT. Converts the value to 4 bytes binary and inverts all bits.
Examples
SELECT 3 & ~1; +--------+ | 3 & ~1 | +--------+ | 2 | +--------+ SELECT 5 & ~1; +--------+ | 5 & ~1 | +--------+ | 4 | +--------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.