0 votes
in PL/SQL by
In A For-loop, Can The Counter Value Be Assigned A Value Within The Loop?

1 Answer

0 votes
by

The counter of a FOR-LOOP can only be used as a constant within the loop. It cannot be assigned a value inside the loop, as that would change the bounds of the loop, which is logically not possible.

...