gpt4 book ai didi

postgresql - 如何结合递归 CTE 和普通 CTE

转载 作者:行者123 更新时间:2023-11-29 11:55:20 34 4
gpt4 key购买 nike

我想要一个普通的 CTE,然后是一个递归的 CTE

如何将这两者结合起来?

我知道我可以做多个纯正常的 CTE

WITH CTE1 AS(
), CTE2 AS(),...

所以我试过了

WITH CTE1 AS(
), RECURSIVE CTE2()

但这给了我一个语法错误

最佳答案

只要把recursive放在开头,即使recursive在后面:

with recursive cte1 as (
...
), cte2 as (
-- here comes the recursive cte
...
)
select *
from ...

关于postgresql - 如何结合递归 CTE 和普通 CTE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26784513/

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