oracle 循环函数

DECLARE my_count NUMBER := 0; BEGIN WHILE my_count

接下来是FOR循环的例子:

FOR i IN 1..10 LOOP dbms_output.put_line('i is: '||i); END LOOP;