I've this table
parlamentari
---------------
id|nome|cognome
Can i add in this table a nested column called telefoni? I tried with
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;
without success. Thanks