我有一个过程,它接受类似于下面显示的 parent_arr 的输入,作为通过 ODP.Net 来自应用程序层的输入。在该过程的第一步中,我将数组中的数据存储在一个全局临时表中,这样我就可以使用集合逻辑而不是 pl/sql 循环继续执行以下几个步骤。只要数组只有一个 parent_typ 成员,一切都很好。但是,当有多个成员时,我得到 ORA-01427,单行查询返回多行。下面的查询返回两个集合。我需要将两个集合取消嵌套在一个将显示 child.name 和 child.value 的 sql 语句中。怎么可能呢?
示例对象
create type child_typ is object( name varchar2(100), value number );
create type child_arr is table of dropme_child_typ;
create type parent_typ is object( pname varchar2(100), child dropme_child_arr );
create type parent_arr is table of dropme_parent_typ;
下面的查询将抛出 ORA-01427
select * from table(
select child
from table( parent_arr(
parent_typ( 'TEST1',
child_arr(
child_typ( 'C1', 1 ),
child_typ( 'C2', 2 ) ) ),
parent_typ( 'TEST2',
child_arr(
child_typ( 'C3', 3 ),
child_typ( 'C4', 4 ) ) ) ) ) );
此查询有效,但返回对象 child_arr 的列
select child
from table( parent_arr(
parent_typ( 'TEST1',
child_arr(
child_typ( 'C1', 1 ),
child_typ( 'C2', 2 ) ) ),
parent_typ( 'TEST2',
child_arr(
child_typ( 'C3', 3 ),
child_typ( 'C4', 4 ) ) ) ) );
此查询失败,因为我无法访问“孩子”中的值
select child.name, child.value from
table( parent_arr(
parent_typ( 'TEST1',
child_arr(
child_typ( 'C1', 1 ),
child_typ( 'C2', 2 ) ) ),
parent_typ( 'TEST2',
child_arr(
child_typ( 'C3', 3 ),
child_typ( 'C4', 4 ) ) ) ) );
请告诉我有一种方法可以在不使用 pl/sql 循环的情况下执行此操作(这是迄今为止我能够成功的唯一方法)。速度是最重要的。我尝试使用 forall 语句循环遍历 parent_arr 的成员,但它会引发批量绑定错误。