oracle - How to get nested table column? -
for example, how this:
create type nums_list table of number; declare nnn nums_list := nums_list(2,3,4,1); begin in ( select col table(nnn) order col ) loop dbms_output.put_line( col ); end loop; end;
Comments
Post a Comment