請問在oracle9i裡,怎樣想嵌入表裡插入數據和修改嵌入表的數據,謝謝,我摸索了好長時間,不得門道。oracle8i的參考書裡的語句在Oracle9i行不通,請各位指點。
create table test(a varchar2(10), b nested_tab_test) nested table b store as test1;
首先要插入一個空的嵌套表類型值。
insert into test(a,b) values('aaa',nested_tab_test());
插入具體值
insert into table (select b from test where a='aaa') values('a01');
如果是從別的表插入數據可以這麼操作。
insert into test select 'aaa',cast(multiset(select a from test2 ) as nested_tab_test) from dual;
重點是把握插入一個嵌套表對應的類型對象。