我有以下类型的 PL/SQL 集合
type p_typ_str_tab is table of varchar2(4000) index by pls_integer;
我想用一个简单的内联函数将这些值聚合到一个字符串中,比如LISTAGG
不编写任何自定义函数或 for 循环。所有的例子LISTAGG
都没有展示如何使用 PL/SQL 集合。我正在使用 Oracle 11g R2。这可能吗?
我有以下类型的 PL/SQL 集合
type p_typ_str_tab is table of varchar2(4000) index by pls_integer;
我想用一个简单的内联函数将这些值聚合到一个字符串中,比如LISTAGG
不编写任何自定义函数或 for 循环。所有的例子LISTAGG
都没有展示如何使用 PL/SQL 集合。我正在使用 Oracle 11g R2。这可能吗?
为了能够对集合使用LISTAGG
函数,集合必须声明为嵌套表而不是关联数组,并且必须创建为 sql 类型(模式对象),因为在 select 语句中无法使用 pl/sql 类型。为此,您可以执行以下操作:
--- create a nested table type
SQL> create or replace type t_tb_type is table of number;
2 /
Type created
--- and use it as follows
SQL> select listagg(column_value, ',') within group(order by column_value) res
2 from table(t_tb_type(1,2,3)) -- or call the function that returns data of
3 / -- t_tb_type type
RES
-------
1,2,3
否则,这loop
是您唯一的选择。
LISTAGG
是一个分析 SQL 函数,它们不针对 PL/SQL 集合操作,而是针对游标/行集。
所以,简而言之,不,这是不可能的。
也就是说,遍历 PL/SQL 表以构建连接字符串是微不足道的:
l_new_string := null;
for i in str_tab.first .. str_tab.last
loop
if str_tab(i) is not null then
l_new_string := str_tab(i) || ', ';
end if;
end loop;
-- trim off the trailing comma and space
l_new_string := substr(l_new_string, 1, length(l_new_string) - 2);