Description
返回两个数的异或值。
Syntax
BOOLEAN xor BOOLEAN
Example
mysql >select true xor false,true xor true;
+------------------+-----------------+
| (TRUE XOR FALSE) | (TRUE XOR TRUE) |
+------------------+-----------------+
| 1 | 0 |
+------------------+-----------------+
Keywords
XOR