Sequential LOOPS
Infinite Loop
Loops infinitely unless EXIT statement exists
While Loop
Conditional test to end loop
FOR Loop
Iteration Loop
[loop_label]LOOP
--sequential statement
EXIT loop_label ;
END LOOP;
WHILE <condition> LOOP
--sequential statements
END LOOP;
FOR <identifier> IN <range> LOOP
--sequential statements
END LOOP;
ÀÌÀü ½½¶óÀ̵å
´ÙÀ½ ½½¶óÀ̵å
ù ½½¶óÀ̵å·Î À̵¿
±×·¡ÇÈ ¹öÀü º¸±â