EXIT WHEN Statement

It is similar to EXIT statement. The EXIT WHEN statement allows you to directly specify condition within the LOOP statement.

Syntax:

LOOP

— Code block

EXIT WHEN condition;

END LOOP;

Example of PL/SQL LOOP with Printing “w3wiki”

The purpose of this example is to show how to print “w3wiki” repeatedly using a PL/SQL LOOP construct. With the help of the EXIT WHEN statement, the loop can be controlled to end when a counter variable reaches a predetermined threshold.

DECLARE
counter NUMBER := 1; -- Initialization of the counter variable

BEGIN
-- Loop that prints "w3wiki" five times
LOOP
DBMS_OUTPUT.PUT_LINE('w3wiki');

counter := counter + 1; -- Increment the counter

EXIT WHEN counter > 5; -- Exit the loop when counter exceeds 5
END LOOP;
END;
/

In this example,

  • Initially counter variable is set to 1.
  • The LOOP statement repeatedly executes the code block within it.
  • Inside the loop, DBMS_OUTPUT.PUT_LINE is used to print “w3wiki”.
  • The counter is incremented by 1 in each iteration.
  • The EXIT WHEN statement is executed when the loop when the counter exceeds 5.

Output:

Statement processed.
w3wiki
w3wiki
w3wiki
w3wiki
w3wiki

PL/SQL Loops

PL/SQL stands for Procedural Language Extension to the Structured Query Language and it is designed specifically for Oracle databases it extends Structured Query Language (SQL) capabilities by allowing the creation of stored procedures, functions, and triggers. It is a block-structured language that combines SQL with the procedural features of programming languages.

In this article, we will learn about How to use the Loop statement of PL/SQL with all its features like EXIT, EXIT WHEN, and Nested Loop for example.

Similar Reads

LOOP Statement

One of the key features in PL/SQL for controlling program flow is the LOOP statement. The LOOP statement is a feature of PL/SQL that allows you to repeatedly execute a block of code until a specified condition is satisfied....

EXIT Statement

The EXIT statement is used to break the loop whether the loop condition has been satisfied or not. This statement is particularly useful when you want to terminate the loop based on certain conditions within the loop block....

EXIT WHEN Statement

It is similar to EXIT statement. The EXIT WHEN statement allows you to directly specify condition within the LOOP statement....

Nested Loops

Nested Loop is a Loop inside Loop and PL/SQL supports nested loops that allows you to have multiple levels of iteration within a program. This is achieved by placing one or more LOOP statements inside another. Each nested loop has its own set of loop control statements....

Conclusion

Pl/SQL is a Procedural Language that is used to write program blocks, procedures, functions, cursors, triggers for databases. It Provides a LOOP statement facility that is used to repeatedly execute a block of code. and It’s other feature like EXIT and EXIT WHEN statement are used to stop loop based on specific conditions and It also support Nested loop functionality....

Contact Us