Case (if/else)
Last updated
Was this helpful?
This common method utilizes if-then-else logic, assigning a result when the corresponding condition evaluates to true, otherwise assigning the final ("else") result –> learn more
CASE
WHEN @condition THEN @result
[ ... ]
[ ELSE @else_result ]
ENDdynamic (input-dependent)
Last updated
Was this helpful?
Was this helpful?

