Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道在 oracle pl/sql 中如何引用以下类型
create type type1 as object ( a number, b varchar2(100) );
我相信以上一个被称为对象。
create type unknown1 as table of type1;
unknown1oracle pl/sql中叫什么?它是嵌套表还是对象表或对象集合或数组?我想知道它是如何准确引用的。请帮忙
unknown1