|
* If..Else
:
IF part executed when condition is TRUE; ELSE part executed when the 'IF' condition is not satisfied.
|
* Simple Case
:
The simple CASE function compares an expression to a set of simple expressions to determine the result.
|
* Searched Case
:
The searched CASE function evaluates a set of Boolean expressions to determine the result.
|
* GOTO
:
Alters the flow of execution to a label. Statements that follow GOTO are skipped and processing continues at the label.
|