^
This page is part of MariaDB's Documentation.
The parent of this page is: SQL Operators for MariaDB Enterprise Server
Topics on this page:
Overview
Bitwise exclusive OR.
EXAMPLES
SELECT 5 ^ 2, 1 ^ 3, 0 ^ 7;
+-------+-------+-------+
| 5 ^ 2 | 1 ^ 3 | 0 ^ 7 |
+-------+-------+-------+
| 7 | 2 | 7 |
+-------+-------+-------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.