Skip to content

Join Condition (Indirect)

frd relation

1
2
 select b.teur
 from tbl a left join TT b on (a.key=b.key)

Columns in the join condition also effect the number of row in the resultset of the select list just like column in the where clause do.

So, the following relation will be discoverd in the above SQL.

1
2
tbl.key -> fdr -> resultset.PseudoRows
TT.key -> fdr -> resultset.PseudoRows

diagram

image.png

join relation

A join relation will be created after analzye the above SQL. It indicates a join relation betwee tbl.key and TT.key.

diagram

image.png