mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
17 lines
407 B
Markdown
17 lines
407 B
Markdown
# 逻辑函数
|
||
|
||
逻辑函数可以接受任何数字类型的参数,并返回UInt8类型的0或1。
|
||
|
||
当向函数传递零时,函数将判定为“false”,否则,任何其他非零的值都将被判定为“true”。
|
||
|
||
## and, AND operator
|
||
|
||
## or, OR operator
|
||
|
||
## not, NOT operator
|
||
|
||
## xor
|
||
|
||
|
||
[来源文章](https://clickhouse.yandex/docs/en/query_language/functions/logical_functions/) <!--hide-->
|