← Back to context Comment by RyanHamilton 1 year ago A = select * from tblaB = select * from tblbC = select * from A join B 2 comments RyanHamilton Reply wtetzner 1 year 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 1 year ago Yes we already have that, it's called `async def`.
wtetzner 1 year 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`.