recursive
を置くだけです 最初は、再帰的なものが後で来たとしても:
with recursive cte1 as (
...
), cte2 as (
-- here comes the recursive cte
...
)
select *
from ...
recursive
を置くだけです 最初は、再帰的なものが後で来たとしても:
with recursive cte1 as (
...
), cte2 as (
-- here comes the recursive cte
...
)
select *
from ...