如何创建引用游标数组

时间:2015-10-30 06:59:46

标签: oracle stored-procedures

我想创建一个存储过程,动态定义一个引用游标数组,然后将这个引用游标数组合成一个引用游标并返回

类似的东西:

html, body {
  height: 100%;
  margin: 0;
}
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
section {
  flex: 1 1 auto;
  overflow-y: auto;
}

1 个答案:

答案 0 :(得分:0)

很快:You can't.

虽然您可以使用ref游标类型的单个列打开引用游标。例如

open outer_cursor for
select O.username,
    cursor(
        select I.*
        from all_objects I
        where I.owner = O.username
    ) as inner_cursor
from all_users O
;