我有以下数据:
cte1
=================
gp_id | m_ids
------|----------
1 | {123}
2 | {432,222}
3 | {123,222}
一个函数foobar(m_ids integer[])
。该函数包含以下cte:
with RECURSIVE foo as (
select id, p_id, name from bar where id = any(m_ids)
union all
select b.id, b.p_id, b.name from bar b join foo f on f.p_id = b.id
)
正在使用的功能类似:
select foobar(m_ids) from cte1;
现在,作为改善表现的过程的一部分,我被告知要摆脱这个功能。我的计划是在我的cte链中使用cte foo
,但我不得不尝试调整any(m_ids)
的使用情况。
已编辑: 要明确,问题是m_ids
语句中使用的where id = any(m_ids)
是参数函数,所以我必须转换cte,以使其在函数之外工作。
我想到了以下内容:
with RECURSIVE foo as (
select (select id, p_id, name from bar where id = any(cte1.m_ids)
union all
select b.id, b.p_id, b.name from bar b join foo f on f.p_id = b.id)
from cte1
)
但那不行,因为
1)recursive query "foo" does not have the form non-recursive-term UNION [ALL] recursive-term
2)subquery must return only one column
最后,我希望以下面的形式获取我的数据:
m_ids |foobar_result
---------|-------------
{123} | 125
{432,222}| 215
答案 0 :(得分:1)
也许JOIN
该表保存参数?
with RECURSIVE foo as (
select m_ids, id, p_id, name from bar
JOIN cte1 ON id = ANY(m_ids)
union all
select m_ids, b.id, b.p_id, b.name from bar b join foo f on f.p_id = b.id
)