摘要:
单维数组 declare type v_table is table of varchar2(30) index by binary_integer; my_table v_table; begin for i in 1..20 loop my_table(i):=i; dbms_output.put_line(my_table(i)); end loop; end; 多维数组DECLARE TYPE emp_ssn_array IS TABLE OF NUMBER INDEX BY BINARY_INTEGER; best_employees emp_ssn_array; wor... 阅读全文
posted @ 2012-05-08 17:18
aiwosuoai_1
阅读(164)
评论(0)
推荐(0)
浙公网安备 33010602011771号