Y
Hacker News
new
|
ask
|
show
|
jobs
by
almostgotcaught
669 days ago
That only gives you trees not DAGs - you can't do fan-in (there's no way to "share" let bound names).
1 comments
mathnmusic
663 days ago
Isn't this fan-in?
let A = select * from tbla
let B = select * from tblb
let C = select * from A join B
link
almostgotcaught
662 days ago
Think about what tbla and tblb can be - hint they can only be globals (ie actual tables)
link
let A = select * from tbla
let B = select * from tblb
let C = select * from A join B