Skip Headers
Oracle® Database PL/SQL Language Reference
11g Release 2 (11.2)

Part Number E10472-05
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

IF Statement

The IF statement runs or skips a sequence of one or more statements, depending on the value of a BOOLEAN expression.

Topics:

Syntax

if_statement ::=

if_statement
Description of the illustration if_statement.gif

See:

Semantics

boolean_expression

The first boolean_expression is always evaluated. Except for the first one, a boolean_expression is evaluated only if the values of the preceding expressions are FALSE.

If a boolean_expression is evaluated and its value is TRUE, the statements after the corresponding THEN run. The succeeding expressions are not evaluated, and the statements associated with them do not run.

ELSE

If no boolean_expression has the value TRUE, the statements after ELSE run.

Examples

Related Topics

In this chapter:

In other chapters: