Multiple choice technology databases

which statement is used to break a loop in pl/sql

  1. exit

  2. break

  3. stop

  4. continue

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In Oracle PL/SQL, the EXIT statement (or EXIT WHEN) is the standard syntax used to break out of a loop. The keyword break is used in languages like C/Java, stop is not a PL/SQL loop control statement, and continue skips the rest of the current iteration instead of breaking the loop.