What syntax do you know that can represent a dag in text?
https://graphviz.org/doc/info/lang.html
let A = select * from tbla
let B = select * from tblb
let C = select * from A join B
B = select * from tblb
C = select * from A join B
WITH a AS (select * from tbla), b AS (select * from tblb) select * from a join b
What syntax do you know that can represent a dag in text?