ClickHouse/docs/zh/sql-reference/functions/bit-functions.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

861 B
Raw Blame History

位操作函数

位操作函数适用于UInt8UInt16UInt32UInt64Int8Int16Int32Int64Float32或Float64中的任何类型。

结果类型是一个整数其位数等于其参数的最大位。如果至少有一个参数为有符数字则结果为有符数字。如果参数是浮点数则将其强制转换为Int64。

bitAnd(a,b)

bitOr(a,b)

bitXor(a,b)

bitNot(a)

bitShiftLeft(a,b)

bitShiftRight(a,b)

bitRotateLeft(a,b)

bitRotateRight(a,b)

bitTest(a,b)

bitTestAll(a,b)

bitTestAny(a,b)

来源文章