Syntax documentationsimple_case_function Locate this document in the navigation structure

Syntax Syntax

  1. <simple_case_function> ::=
      CASE <check_expression>
        WHEN <search_expression> THEN <result_expression>
        [...]
        [ELSE <default_expression>]
      END
End of the code.