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

Popular posts from this blog

how to proxy from https to http with lighttpd -

android - Automated my builds -

python - Flask migration error -