← Back to context Comment by RyanHamilton 2 years ago A = select * from tblaB = select * from tblbC = select * from A join B 2 comments RyanHamilton Reply wtetzner 2 years ago I guess CTEs already provide that (even if they're a bit clunky). WITH a AS (select * from tbla), b AS (select * from tblb) select * from a join b almostgotcaught 2 years ago Yes we already have that, it's called `async def`.
wtetzner 2 years ago I guess CTEs already provide that (even if they're a bit clunky). WITH a AS (select * from tbla), b AS (select * from tblb) select * from a join b
I guess CTEs already provide that (even if they're a bit clunky).
Yes we already have that, it's called `async def`.