This Oracle tutorial explains how to use the LOOP statement in Oracle with syntax and examples.
In Oracle, the LOOP statement is used when you are not sure how many times you want the loop body to execute and you want the loop body to execute at least once.
The syntax for the LOOP statement in Oracle/PLSQL is:
LOOP
{...statements...}
END LOOP;
The statements of code to execute each pass through the loop.
Let's look at a LOOP example in Oracle:
LOOP
monthly_value := daily_value * 31;
EXIT WHEN monthly_value > 4000;
END LOOP;
In this LOOP example, the LOOP would terminate when the monthly_value exceeded 4000.