declare v_count binary_integer := 0; begin while v_count < 10 loop dbms_output.put_line('繰り返し処理:' || v_count); v_count := v_count + 1; end loop; end;