CASE WHEN
Applies to: CELONIS 4.0 CELONIS 4.2 CELONIS 4.3 CELONIS 4.4 CELONIS 4.5 CELONIS 4.6
Description
CASE WHEN
evaluates a list of conditions and returns result expressions based on these conditions.
A CASE WHEN
statement consists of one or more conditions with associated result expressions.
Syntax
CASE WHEN condition THEN result_expression [ WHEN condition THEN result_expression ]* [ ELSE result_expression ] END
The result expression of the first condition that evaluates to true is returned. If no condition holds, the expression in the ELSE
part is returned. If no ELSE
is specified, and none of the conditions hold, NULL is returned (Since: CELONIS 4.5). If a condition cannot be evaluated because an input column is NULL, NULL is returned.
All result expressions must be of the same type. The result type of the CASE WHEN statement is equal to the type of the result expressions.
Examples
[1] CASE WHEN with one condition. |
[2] CASE WHEN with one condition, without ELSE. |
[3] Use CASE WHEN to replace NULL values with 0. This can also be done with the COALESCE operator. |
[4] Return 'even' if the input value is even, and 'odd' otherwise. NULL input values result in NULL output values. |