October 2002
Intermediate to advanced
688 pages
14h 14m
English
Lab ObjectivesAfter this Lab, you will be able to: |
An IF statement has two forms: IF-THEN and IF-THEN-ELSE. An IF-THEN statement allows you to specify only one group of actions to take. In other words, this group of actions is taken only when a condition evaluates to TRUE. An IF-THEN-ELSE statement allows you to specify two groups of actions, and the second group of actions is taken when a condition evaluates to FALSE or NULL.
An IF-THEN statement is the most basic kind of a conditional control and has the following structure:
IF CONDITION THEN
STATEMENT 1;
…
STATEMENT N;
END IF; The reserved word IF marks the beginning of the IF statement. ...