~

You are viewing an old version of this article. View the current version here.

Syntax:

~

Description:

Bitwise NOT. Converts the value to 4 bytes binary and inverts all bits.

Examples:

MariaDB [(none)]> SELECT 3 & ~1;
+--------+
| 3 & ~1 |
+--------+
|      2 |
+--------+
1 row in set (0.00 sec)

MariaDB [(none)]> SELECT 5 & ~1;
+--------+
| 5 & ~1 |
+--------+
|      4 |
+--------+
1 row in set (0.00 sec)

Comments

Comments loading...
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.