1

たとえば、次のようなことを行う方法は次のとおりです。

create type nums_list as table of number;

declare 
  nnn nums_list := nums_list(2,3,4,1);
begin
   for i in ( select col from table(nnn) order by col ) 
   loop
     dbms_output.put_line( col );
   end loop;
end;
4

0 に答える 0