gpt4 book ai didi

postgresql - WITH RECURSIVE 作为查询中的第二部分 CTE。 Postgres

转载 作者:行者123 更新时间:2023-11-29 12:08:44 31 4
gpt4 key购买 nike

我如何编写这样的查询:

with t1 as 
(
select id
from table1
),
RECURSIVE t2(
select * from t2
union
...
)

目前不允许吗?

最佳答案

无论您将递归 CTE 放在哪里,recursive 都需要紧跟在 WITH 之后:

with recursive t1 as 
(
select id
from table1
), t2 (
select *
from t2
union
...
)
...

关于postgresql - WITH RECURSIVE 作为查询中的第二部分 CTE。 Postgres,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47978952/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com