【发布时间】:2012-08-06 12:34:27
【问题描述】:
我有两个嵌套表类型的 PLSQL 数组:
TYPE nested_typ IS TABLE OF VARCHAR2(21);
nt1 nested_typ := nested_typ('abc','def','123');
nt2 nested_typ := nested_typ('123');
我想要这两个集合的区别,对于上面的例子:'def','abc'
请建议任何简单的方法来做到这一点?
谢谢...
【问题讨论】:
标签: arrays oracle collections plsql nested-table