ClickHouse/docs/en/sql-reference/functions/logical-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

519 B

toc_priority toc_title
37 Logical

Logical Functions

Logical functions accept any numeric types, but return a UInt8 number equal to 0 or 1.

Zero as an argument is considered “false,” while any non-zero value is considered “true”.

and, AND operator

or, OR operator

not, NOT operator

xor

Original article