我正在使用 OODB 并尝试使用两个表创建一个嵌套表。我在这里发布代码
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);
该代码打算按分支类型创建一个表分支,然后创建一个 Publisher Type 类型,然后尝试创建一个嵌套表。
create table Publishers of PublisherType NESTED TABLE
branches STORE as branchTable
但是上面的代码给出了错误,指出指定的类型不是嵌套表类型。请帮帮我。