SelectDB Cloud
SQL 手册
函数
bitwise-functions
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
© 2023 北京飞轮数据科技有限公司 京ICP备2022004029号 | Apache、Apache Doris 以及相关开源项目名称均为 Apache 基金会商标