Comment by 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
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
No comments yet
Contribute on Hacker News ↗