Conditional Functions And Expressions

Functions that return one of their arguments by evaluating in an if-else manner.

CASE

Synopsis:

  1. CASE WHEN condition THEN result
  2. [WHEN ...]
  3. [ELSE default_result]
  4. END

Input:

One or multiple WHEN condition THEN result clauses are used and the expression can optionally have an ELSE default_result clause. Every condition should be a boolean expression.

Output: one of the result expressions if the corresponding WHEN condition evaluates to true or the default_result if all WHEN condition clauses evaluate to false. If the optional ELSE default_result clause is missing and all WHEN condition clauses evaluate to false then null is returned.

Description: The CASE expression is a generic conditional expression which simulates if/else statements of other programming languages If the condition’s result is true, the value of the result expression that follows the condition will be the returned the subsequent when clauses will be skipped and not processed.

  1. SELECT CASE WHEN 1 > 2 THEN 'elastic'
  2. WHEN 2 <= 3 THEN 'search'
  3. END AS "case";
  4. case
  5. ---------------
  6. search
  1. SELECT CASE WHEN 1 > 2 THEN 'elastic'
  2. WHEN 2 > 10 THEN 'search'
  3. END AS "case";
  4. case
  5. ---------------
  6. null
  1. SELECT CASE WHEN 1 > 2 THEN 'elastic'
  2. WHEN 2 > 10 THEN 'search'
  3. ELSE 'default'
  4. END AS "case";
  5. case
  6. ---------------
  7. default

As a variant, a case expression can be expressed with a syntax similar to switch-case of other programming languages:

  1. CASE expression
  2. WHEN value1 THEN result1
  3. [WHEN value2 THEN result2]
  4. [WHEN ...]
  5. [ELSE default_result]
  6. END

In this case it’s transformed internally to:

  1. CASE WHEN expression = value1 THEN result1
  2. [WHEN expression = value2 THEN result2]
  3. [WHEN ...]
  4. [ELSE default_result]
  5. END
  1. SELECT CASE 5
  2. WHEN 1 THEN 'elastic'
  3. WHEN 2 THEN 'search'
  4. WHEN 5 THEN 'elasticsearch'
  5. END AS "case";
  6. case
  7. ---------------
  8. elasticsearch
  1. SELECT CASE 5
  2. WHEN 1 THEN 'elastic'
  3. WHEN 2 THEN 'search'
  4. WHEN 3 THEN 'elasticsearch'
  5. ELSE 'default'
  6. END AS "case";
  7. case
  8. ---------------
  9. default

All result expressions must be of compatible data types. More specifically all result expressions should have a compatible data type with the 1st non-null result expression. E.g.:

for the following query:

  1. CASE WHEN a = 1 THEN null
  2. WHEN a > 2 THEN 10
  3. WHEN a > 5 THEN 'foo'
  4. END

an error message would be returned, mentioning that foo is of data type keyword, which does not match the expected data type integer (based on result 10).

Conditional bucketing

CASE can be used as a GROUP BY key in a query to facilitate custom bucketing and assign descriptive names to those buckets. If, for example, the values for a key are too many or, simply, ranges of those values are more interesting than every single value, CASE can create custom buckets as in the following example:

  1. SELECT count(*) AS count,
  2. CASE WHEN NVL(languages, 0) = 0 THEN 'zero'
  3. WHEN languages = 1 THEN 'one'
  4. WHEN languages = 2 THEN 'bilingual'
  5. WHEN languages = 3 THEN 'trilingual'
  6. ELSE 'multilingual'
  7. END as lang_skills
  8. FROM employees
  9. GROUP BY lang_skills
  10. ORDER BY lang_skills;

With this query, one can create normal grouping buckets for values 0, 1, 2, 3 with descriptive names, and every value >= 4 falls into the multilingual bucket.

COALESCE

Synopsis:

  1. COALESCE(
  2. expression,
  3. expression,
  4. ...)

Input:

1st expression

2nd expression

…​

Nth expression

COALESCE can take an arbitrary number of arguments.

Output: one of the expressions or null

Description: Returns the first of its arguments that is not null. If all arguments are null, then it returns null.

  1. SELECT COALESCE(null, 'elastic', 'search') AS "coalesce";
  2. coalesce
  3. ---------------
  4. elastic
  1. SELECT COALESCE(null, null, null, null) AS "coalesce";
  2. coalesce
  3. ---------------
  4. null

GREATEST

Synopsis:

  1. GREATEST(
  2. expression,
  3. expression,
  4. ...)

Input:

1st expression

2nd expression

…​

Nth expression

GREATEST can take an arbitrary number of arguments and all of them must be of the same data type.

Output: one of the expressions or null

Description: Returns the argument that has the largest value which is not null. If all arguments are null, then it returns null.

  1. SELECT GREATEST(null, 1, 2) AS "greatest";
  2. greatest
  3. ---------------
  4. 2
  1. SELECT GREATEST(null, null, null, null) AS "greatest";
  2. greatest
  3. ---------------
  4. null

IFNULL

Synopsis:

  1. IFNULL(
  2. expression,
  3. expression)

Input:

1st expression

2nd expression

Output: 2nd expression if 1st expression is null, otherwise 1st expression.

Description: Variant of COALESCE with only two arguments. Returns the first of its arguments that is not null. If all arguments are null, then it returns null.

  1. SELECT IFNULL('elastic', null) AS "ifnull";
  2. ifnull
  3. ---------------
  4. elastic
  1. SELECT IFNULL(null, 'search') AS "ifnull";
  2. ifnull
  3. ---------------
  4. search

IIF

Synopsis:

  1. IIF(expression,
  2. expression,
  3. [expression])

Input:

boolean condition to check

return value if the boolean condition evaluates to true

return value if the boolean condition evaluates false; optional

Output: 2nd expression if 1st expression (condition) evaluates to true. If it evaluates to false return 3rd expression. If 3rd expression is not provided return null.

Description: Conditional function that implements the standard IF THEN ELSE logic of programming languages. If the 3rd expression is not provided and the condition evaluates to false, null is returned.

  1. SELECT IIF(1 < 2, 'TRUE', 'FALSE') AS result1, IIF(1 > 2, 'TRUE', 'FALSE') AS result2;
  2. result1 | result2
  3. ---------------+---------------
  4. TRUE |FALSE
  1. SELECT IIF(1 < 2, 'TRUE') AS result1, IIF(1 > 2 , 'TRUE') AS result2;
  2. result1 | result2
  3. ---------------+---------------
  4. TRUE |null

IIF functions can be combined to implement more complex logic simulating the CASE expression. E.g.:

  1. IIF(a = 1, 'one', IIF(a = 2, 'two', IIF(a = 3, 'three', 'many')))

ISNULL

Synopsis:

  1. ISNULL(
  2. expression,
  3. expression)

Input:

1st expression

2nd expression

Output: 2nd expression if 1st expression is null, otherwise 1st expression.

Description: Variant of COALESCE with only two arguments. Returns the first of its arguments that is not null. If all arguments are null, then it returns null.

  1. SELECT ISNULL('elastic', null) AS "isnull";
  2. isnull
  3. ---------------
  4. elastic
  1. SELECT ISNULL(null, 'search') AS "isnull";
  2. isnull
  3. ---------------
  4. search

LEAST

Synopsis:

  1. LEAST(
  2. expression,
  3. expression,
  4. ...)

Input:

1st expression

2nd expression

…​

Nth expression

LEAST can take an arbitrary number of arguments and all of them must be of the same data type.

Output: one of the expressions or null

Description: Returns the argument that has the smallest value which is not null. If all arguments are null, then it returns null.

  1. SELECT LEAST(null, 2, 1) AS "least";
  2. least
  3. ---------------
  4. 1
  1. SELECT LEAST(null, null, null, null) AS "least";
  2. least
  3. ---------------
  4. null

NULLIF

Synopsis:

  1. NULLIF(
  2. expression,
  3. expression)

Input:

1st expression

2nd expression

Output: null if the 2 expressions are equal, otherwise the 1st expression.

Description: Returns null when the two input expressions are equal and if not, it returns the 1st expression.

  1. SELECT NULLIF('elastic', 'search') AS "nullif";
  2. nullif
  3. ---------------
  4. elastic
  1. SELECT NULLIF('elastic', 'elastic') AS "nullif";
  2. nullif:s
  3. ---------------
  4. null

NVL

Synopsis:

  1. NVL(
  2. expression,
  3. expression)

Input:

1st expression

2nd expression

Output: 2nd expression if 1st expression is null, otherwise 1st expression.

Description: Variant of COALESCE with only two arguments. Returns the first of its arguments that is not null. If all arguments are null, then it returns null.

  1. SELECT NVL('elastic', null) AS "nvl";
  2. nvl
  3. ---------------
  4. elastic
  1. SELECT NVL(null, 'search') AS "nvl";
  2. nvl
  3. ---------------
  4. search