bit_xor
bit_xor介绍
bit_xor(expr) - 返回所有非空输入值的按位异或(XOR),如果没有非空值则返回 null。
Examples:
> SELECT bit_xor(col) FROM VALUES (3), (5) AS tab(col);
6
Since: 3.0.0
bit_xor(expr) - 返回所有非空输入值的按位异或(XOR),如果没有非空值则返回 null。
Examples:
> SELECT bit_xor(col) FROM VALUES (3), (5) AS tab(col);
6
Since: 3.0.0