w3resource

PL/SQL Control Statement Exercises: Explain the uses of nested for loop with label

PL/SQL Control Statement: Exercise-26 with Solution

Write a program in PL/SQL to explain the uses of nested for loop with label.

Sample Solution:

PL/SQL Code:

BEGIN
  <>
  FOR j IN 1..5 LOOP
    <<loop_inner>>
    FOR j IN 1..4 LOOP
      IF loop_outer.j = 4 THEN
        DBMS_OUTPUT.PUT_LINE
          ('When the value of j of outer loop: ' || TO_CHAR(loop_outer.j) || ' then the value of j in the inner loop: '
           || TO_CHAR(loop_inner.j));
      END IF;
    END LOOP loop_inner;
  END LOOP loop_outer;
END;
/

Flowchart:

Flowchart:Explain the uses of nested for loop with label

Sample Output:

When the value of j of outer loop: 4 then the value of j in the inner loop: 1
When the value of j of outer loop: 4 then the value of j in the inner loop: 2
When the value of j of outer loop: 4 then the value of j in the inner loop: 3
When the value of j of outer loop: 4 then the value of j in the inner loop: 4

PL/SQL procedure successfully completed.

Improve this sample solution and post your code through Disqus

Previous: Write a program in PL/SQL to show the value of a same variable declared as local and global.
Next: Write a program in PL/SQL to print the prime numbers between 1 to 50.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/plsql-exercises/control-statement/plsql-control-statement-exercise-26.php