ORA-22912 specified column or attribute is not a nested table type /oracle creating nested table
问题 I was working with OODB and tried to make a nested table using two tables. I am posting code here create type BranchType as object( address AddrType, phone1 integer, phone2 integer ); create table BranchTableType of BranchType; create type PublisherType as object( name varchar2(50), addr AddrType, branches BranchType); The code intends to create a table branch by branch type and then creates a type Publisher Type which then try to create a nested table. create table Publishers of