2020-04-03 13:23:32 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/functions/conditional-functions
2022-04-09 13:29:05 +00:00
sidebar_position: 43
sidebar_label: 'Conditional '
2020-04-03 13:23:32 +00:00
---
2022-06-02 10:55:18 +00:00
# Conditional Functions
2017-12-28 15:13:23 +00:00
2022-06-02 10:55:18 +00:00
## if
2017-12-28 15:13:23 +00:00
2020-02-02 22:06:53 +00:00
Controls conditional branching. Unlike most systems, ClickHouse always evaluate both expressions `then` and `else` .
2017-12-28 15:13:23 +00:00
2020-02-02 22:06:53 +00:00
**Syntax**
2019-11-12 20:49:04 +00:00
2020-03-20 10:10:48 +00:00
``` sql
2021-09-15 19:15:52 +00:00
if(cond, then, else)
2019-11-12 20:49:04 +00:00
```
If the condition `cond` evaluates to a non-zero value, returns the result of the expression `then` , and the result of the expression `else` , if present, is skipped. If the `cond` is zero or `NULL` , then the result of the `then` expression is skipped and the result of the `else` expression, if present, is returned.
2021-09-15 17:36:19 +00:00
You can use the [short_circuit_function_evaluation ](../../operations/settings/settings.md#short-circuit-function-evaluation ) setting to calculate the `if` function according to a short scheme. If this setting is enabled, `then` expression is evaluated only on rows where `cond` is true, `else` expression – where `cond` is false. For example, an exception about division by zero is not thrown when executing the query `SELECT if(number = 0, 0, intDiv(42, number)) FROM numbers(10)` , because `intDiv(42, number)` will be evaluated only for numbers that doesn't satisfy condition `number = 0` .
2021-09-12 14:36:04 +00:00
2021-02-15 21:22:10 +00:00
**Arguments**
2019-11-12 20:49:04 +00:00
2020-03-21 04:11:51 +00:00
- `cond` – The condition for evaluation that can be zero or not. The type is UInt8, Nullable(UInt8) or NULL.
2021-03-13 18:18:45 +00:00
- `then` – The expression to return if condition is met.
- `else` – The expression to return if condition is not met.
2019-11-12 20:49:04 +00:00
**Returned values**
The function executes `then` and `else` expressions and returns its result, depending on whether the condition `cond` ended up being zero or not.
**Example**
Query:
2020-03-20 10:10:48 +00:00
``` sql
2021-03-13 18:18:45 +00:00
SELECT if(1, plus(2, 2), plus(2, 6));
2019-11-12 20:49:04 +00:00
```
Result:
2020-03-20 10:10:48 +00:00
``` text
2019-11-12 20:49:04 +00:00
┌─plus(2, 2)─┐
│ 4 │
└────────────┘
```
Query:
2020-03-20 10:10:48 +00:00
``` sql
2021-03-13 18:18:45 +00:00
SELECT if(0, plus(2, 2), plus(2, 6));
2019-11-12 20:49:04 +00:00
```
Result:
2020-03-20 10:10:48 +00:00
``` text
2019-11-12 20:49:04 +00:00
┌─plus(2, 6)─┐
│ 8 │
└────────────┘
```
2018-09-04 11:18:59 +00:00
2020-03-21 04:11:51 +00:00
- `then` and `else` must have the lowest common type.
2018-09-04 11:18:59 +00:00
2020-01-01 16:43:17 +00:00
**Example:**
Take this `LEFT_RIGHT` table:
2018-09-04 11:18:59 +00:00
2020-03-20 10:10:48 +00:00
``` sql
2020-01-01 16:43:17 +00:00
SELECT *
FROM LEFT_RIGHT
┌─left─┬─right─┐
│ ᴺᵁᴸᴸ │ 4 │
│ 1 │ 3 │
│ 2 │ 2 │
│ 3 │ 1 │
│ 4 │ ᴺᵁᴸᴸ │
└──────┴───────┘
2018-09-04 11:18:59 +00:00
```
2020-03-20 10:10:48 +00:00
2020-01-01 16:43:17 +00:00
The following query compares `left` and `right` values:
2020-03-20 10:10:48 +00:00
``` sql
2020-01-01 16:43:17 +00:00
SELECT
left,
right,
if(left < right , ' left is smaller than right ' , ' right is greater or equal than left ' ) AS is_smaller
FROM LEFT_RIGHT
WHERE isNotNull(left) AND isNotNull(right)
┌─left─┬─right─┬─is_smaller──────────────────────────┐
│ 1 │ 3 │ left is smaller than right │
│ 2 │ 2 │ right is greater or equal than left │
│ 3 │ 1 │ right is greater or equal than left │
└──────┴───────┴─────────────────────────────────────┘
```
2020-03-20 10:10:48 +00:00
2020-01-04 20:16:43 +00:00
Note: `NULL` values are not used in this example, check [NULL values in conditionals ](#null-values-in-conditionals ) section.
2020-01-01 16:43:17 +00:00
2022-06-02 10:55:18 +00:00
## Ternary Operator
2020-01-01 16:43:17 +00:00
It works same as `if` function.
Syntax: `cond ? then : else`
2020-03-17 15:24:11 +00:00
Returns `then` if the `cond` evaluates to be true (greater than zero), otherwise returns `else` .
2020-01-01 16:43:17 +00:00
2020-03-21 04:11:51 +00:00
- `cond` must be of type of `UInt8` , and `then` and `else` must have the lowest common type.
2020-01-01 16:43:17 +00:00
2020-03-21 04:11:51 +00:00
- `then` and `else` can be `NULL`
2020-01-01 16:43:17 +00:00
2020-03-17 15:24:11 +00:00
**See also**
2020-06-18 08:24:31 +00:00
- [ifNotFinite ](../../sql-reference/functions/other-functions.md#ifnotfinite ).
2020-03-17 15:24:11 +00:00
2022-06-02 10:55:18 +00:00
## multiIf
2020-01-01 16:43:17 +00:00
2020-06-18 08:24:31 +00:00
Allows you to write the [CASE ](../../sql-reference/operators/index.md#operator_case ) operator more compactly in the query.
2020-01-01 16:43:17 +00:00
2021-09-12 14:36:04 +00:00
**Syntax**
2018-09-04 11:18:59 +00:00
2021-09-12 14:36:04 +00:00
``` sql
2021-09-15 19:15:52 +00:00
multiIf(cond_1, then_1, cond_2, then_2, ..., else)
2021-09-12 14:36:04 +00:00
```
2021-09-18 12:09:56 +00:00
You can use the [short_circuit_function_evaluation ](../../operations/settings/settings.md#short-circuit-function-evaluation ) setting to calculate the `multiIf` function according to a short scheme. If this setting is enabled, `then_i` expression is evaluated only on rows where `((NOT cond_1) AND (NOT cond_2) AND ... AND (NOT cond_{i-1}) AND cond_i)` is true, `cond_i` will be evaluated only on rows where `((NOT cond_1) AND (NOT cond_2) AND ... AND (NOT cond_{i-1}))` is true. For example, an exception about division by zero is not thrown when executing the query `SELECT multiIf(number = 2, intDiv(1, number), number = 5) FROM numbers(10)` .
2021-09-12 14:36:04 +00:00
**Arguments**
2018-09-04 11:18:59 +00:00
2020-03-21 04:11:51 +00:00
- `cond_N` — The condition for the function to return `then_N` .
- `then_N` — The result of the function when executed.
- `else` — The result of the function if none of the conditions is met.
2018-09-04 11:18:59 +00:00
The function accepts `2N+1` parameters.
**Returned values**
The function returns one of the values `then_N` or `else` , depending on the conditions `cond_N` .
**Example**
2020-01-01 16:43:17 +00:00
Again using `LEFT_RIGHT` table.
2018-09-04 11:18:59 +00:00
2020-03-20 10:10:48 +00:00
``` sql
2020-01-01 16:43:17 +00:00
SELECT
left,
right,
multiIf(left < right , ' left is smaller ' , left > right, 'left is greater', left = right, 'Both equal', 'Null value') AS result
FROM LEFT_RIGHT
┌─left─┬─right─┬─result──────────┐
│ ᴺᵁᴸᴸ │ 4 │ Null value │
│ 1 │ 3 │ left is smaller │
│ 2 │ 2 │ Both equal │
│ 3 │ 1 │ left is greater │
│ 4 │ ᴺᵁᴸᴸ │ Null value │
└──────┴───────┴─────────────────┘
2018-09-04 11:18:59 +00:00
```
2020-03-20 10:10:48 +00:00
2022-06-02 10:55:18 +00:00
## Using Conditional Results Directly
2018-09-04 11:18:59 +00:00
2020-01-01 16:43:17 +00:00
Conditionals always result to `0` , `1` or `NULL` . So you can use conditional results directly like this:
2018-09-04 11:18:59 +00:00
2020-03-20 10:10:48 +00:00
``` sql
2020-01-01 16:43:17 +00:00
SELECT left < right AS is_small
FROM LEFT_RIGHT
┌─is_small─┐
│ ᴺᵁᴸᴸ │
│ 1 │
│ 0 │
│ 0 │
│ ᴺᵁᴸᴸ │
└──────────┘
```
2022-06-02 10:55:18 +00:00
## NULL Values in Conditionals
2020-01-01 16:43:17 +00:00
When `NULL` values are involved in conditionals, the result will also be `NULL` .
2018-09-04 11:18:59 +00:00
2020-03-20 10:10:48 +00:00
``` sql
2020-01-01 16:43:17 +00:00
SELECT
NULL < 1 ,
2 < NULL ,
NULL < NULL ,
NULL = NULL
┌─less(NULL, 1)─┬─less(2, NULL)─┬─less(NULL, NULL)─┬─equals(NULL, NULL)─┐
│ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │ ᴺᵁᴸᴸ │
└───────────────┴───────────────┴──────────────────┴────────────────────┘
2018-09-04 11:18:59 +00:00
```
2020-01-01 16:43:17 +00:00
So you should construct your queries carefully if the types are `Nullable` .
The following example demonstrates this by failing to add equals condition to `multiIf` .
2018-09-04 11:18:59 +00:00
2020-03-20 10:10:48 +00:00
``` sql
2020-01-01 16:43:17 +00:00
SELECT
left,
right,
multiIf(left < right , ' left is smaller ' , left > right, 'right is smaller', 'Both equal') AS faulty_result
FROM LEFT_RIGHT
┌─left─┬─right─┬─faulty_result────┐
│ ᴺᵁᴸᴸ │ 4 │ Both equal │
│ 1 │ 3 │ left is smaller │
│ 2 │ 2 │ Both equal │
│ 3 │ 1 │ right is smaller │
│ 4 │ ᴺᵁᴸᴸ │ Both equal │
└──────┴───────┴──────────────────┘
2018-09-04 11:18:59 +00:00
```