mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
d91c97d15d
* Replace underscores with hyphens * remove temporary code * fix style check * fix collapse
30 lines
861 B
Markdown
30 lines
861 B
Markdown
# 位操作函数 {#wei-cao-zuo-han-shu}
|
||
|
||
位操作函数适用于UInt8,UInt16,UInt32,UInt64,Int8,Int16,Int32,Int64,Float32或Float64中的任何类型。
|
||
|
||
结果类型是一个整数,其位数等于其参数的最大位。如果至少有一个参数为有符数字,则结果为有符数字。如果参数是浮点数,则将其强制转换为Int64。
|
||
|
||
## bitAnd(a,b) {#bitanda-b}
|
||
|
||
## bitOr(a,b) {#bitora-b}
|
||
|
||
## bitXor(a,b) {#bitxora-b}
|
||
|
||
## bitNot(a) {#bitnota}
|
||
|
||
## bitShiftLeft(a,b) {#bitshiftlefta-b}
|
||
|
||
## bitShiftRight(a,b) {#bitshiftrighta-b}
|
||
|
||
## bitRotateLeft(a,b) {#bitrotatelefta-b}
|
||
|
||
## bitRotateRight(a,b) {#bitrotaterighta-b}
|
||
|
||
## bitTest(a,b) {#bittesta-b}
|
||
|
||
## bitTestAll(a,b) {#bittestalla-b}
|
||
|
||
## bitTestAny(a,b) {#bittestanya-b}
|
||
|
||
[来源文章](https://clickhouse.tech/docs/en/query_language/functions/bit_functions/) <!--hide-->
|