CASE keyword

Syntax#

Flow chart showing the syntax of CASE

Description#

CASE goes through a set of conditions and returns a value corresponding to the first condition met. Each new condition follows the WHEN condition THEN value syntax. The user can define a return value when no condition is met using ELSE. If ELSE is not defined and no conditions are met, then case returns null.

Examples#

Assume the following data

nameage
Tom4
Jerry19
Anna25
Jack8
CASE with ELSE
SELECT
name,
CASE
WHEN age > 18 THEN 'major'
ELSE 'minor'
END
FROM my_table

Result

namecase
Tomminor
Jerrymajor
Annamajor
Jackminor
CASE without ELSE
SELECT
name,
CASE
WHEN age > 18 THEN 'major'
END
FROM my_table

Result

namecase
Tomnull
Jerrymajor
Annamajor
Jacknull

โญ Something missing? Page not helpful? Please suggest an edit on GitHub.