mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
7 lines
221 B
Markdown
7 lines
221 B
Markdown
|
# Conditional functions
|
||
|
|
||
|
## if(cond, then, else), cond ? operator then : else
|
||
|
|
||
|
Returns 'then' if cond !or 'else' if cond = 0.'cond' must be UInt 8, and 'then' and 'else' must be a type that has the smallest common type.
|
||
|
|