您可能知道,LISTAGG允许您将多行的值连接成一个值。
我正在尝试从多行构建正则表达式,然后将其解压缩以在其他应用程序中使用以搜索文件。
然而,there is a limit on the maximum length of regular expressions in Oracle (512 bytes)。
出于这个原因,我需要使用单独的listagg获取多行,然后导出该输出。
--The output I need is multiple rows with a listagg on 50 rows each
select '^.*(' || listagg(id, '|') within group (order by id) || ')' regex
from mytable
--where rownum < 50
这是我被困的地方。有可能吗?
答案 0 :(得分:1)
与其他聚合函数listagg
also supports analytic functions一样。因此,我们可以按值对其进行分区。 floor(rownum/50)
为连续50行提供相同的值。
select distinct '^.*(' || listagg(id, '|') within group (order by id)
over (partition by floor(rownum / 50)) || ')' regex
from mytable