【发布时间】:2019-01-31 10:55:31
【问题描述】:
我有这张桌子
parlamentari
---------------
id|nome|cognome
我可以在此表中添加一个名为 telefoni 的嵌套列吗? 我试过了
create table or replace type telefoni_nt as table of varchar2(10) after dnn;
alter table parlamentari add telefoni telefoni_nt nested table telefoni store telefoni_tab;
没有成功。 谢谢
【问题讨论】:
标签: oracle oracle11g nested-table