Thursday, 24 May 2012

In a FOR-LOOP, can the counter value be assigned a value within the loop? | PL SQL

 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.