向嵌套 table 添加一列

Add a column to a nested table

我有这个table

parlamentari
---------------
id|nome|cognome

我可以在此 table 中添加一个名为 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;

没有成功。 谢谢

我想你想要:

create table parlamentari( id integer, nome varchar2(20), cognome varchar2(20));

create or replace type telefoni_nt as table of varchar2(10);

alter table parlamentari 
        add (telefoni telefoni_nt)
nested table telefoni store as telefoni_tab;

在“create table 或替换类型 telefoni_nt".

SQL Fiddle Demo