跳到主要内容
跳到主要内容

BITXOR

bitxor

description

Syntax

BITXOR(Integer-type lhs, Integer-type rhs)

返回两个整数异或运算的结果.

整数范围:TINYINT、SMALLINT、INT、BIGINT、LARGEINT

example

mysql> select bitxor(3,5) ans;
+------+
| ans |
+------+
| 7 |
+------+

mysql> select bitxor(1,7) ans;
+------+
| ans |
+------+
| 6 |
+------+

keywords

BITXOR