mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
20 lines
522 B
Markdown
20 lines
522 B
Markdown
---
|
||
slug: /zh/sql-reference/functions/logical-functions
|
||
sidebar_position: 37
|
||
sidebar_label: 逻辑函数
|
||
---
|
||
|
||
# 逻辑函数 {#luo-ji-han-shu}
|
||
|
||
逻辑函数可以接受任何数字类型的参数,并返回UInt8类型的0或1。
|
||
|
||
当向函数传递零时,函数将判定为«false»,否则,任何其他非零的值都将被判定为«true»。
|
||
|
||
## 和,`AND` 运算符 {#and-and-operator}
|
||
|
||
## 或,`OR` 运算符 {#or-or-operator}
|
||
|
||
## 非,`NOT` 运算符 {#not-not-operator}
|
||
|
||
## 异或,`XOR` 运算符 {#xor}
|