Universal Data Mover - while Statement

while Statement

The while statement implements a simple while loop.

Syntax

The syntax of the while statement is:


In this case, the loop iterates (executing the commands between the while and end statements) as long as the expression evaluates to a value that is not zero.

If the expression evaluates to a value of zero, code execution picks up at the point immediately following the end of the while loop.

Example

For example: