How I can write a query like that:
with t1 as
(
select id
from table1
),
RECURSIVE t2(
select * from t2
union
...
)
Currently it's not allowed?
How I can write a query like that:
with t1 as
(
select id
from table1
),
RECURSIVE t2(
select * from t2
union
...
)
Currently it's not allowed?