Hi All, What is meaning of single column in Join condition expession. Eg. In the following query, what table5.col_int_key and table2.pk predicate do ? Is it simply colval !=0 ?
SELECT STRAIGHT_JOIN COUNT(table1 .col_int)
FROM g table1
RIGHT JOIN e table2
LEFT JOIN m table3
LEFT JOIN a table5
ON table5 .col_int_key
ON table2 .col_int_key = table3 .col_int
ON table2 .pk;
/* TRANSFORM_OUTCOME_UNORDERED_MATCH */;