Files
oceanbase/docs/docs-cn/10.sql-reference/2.operator/2.bitwise-operators.md
2022-02-10 14:51:49 +08:00

479 B

位运算符

位运算使用BIGINT UNSIGNED计算,不需考虑符号位。

以下为所有位运算符列表:

运算符 操作数 含义
& 二元 按位与。
` ` 二元
~ 一元 按位取反。
^ 二元 按位异或。
<< 二元 逻辑左移。
>> 二元 逻辑右移。