PL/SQL FOR loop is used when we need to execute set of statements for the specific number of times and loop operates between the start and end counter values. The counter is always incremented by one and once the counter reaches to end integer value, the loop terminates
The syntax of PL/SQL FOR Loop is like this
FOR counter_variable IN start value.. end value LOOP
statements to execute
END LOOP;