How can I do a left join of A and B tables using some other Transformer ?
Screenshots will be highly appreciated. Thanks
How can I do a left join of A and B tables using some other Transformer ?
Screenshots will be highly appreciated. Thanks
The InlineQuerier or SQLExecutor can do that for you.
Itay
Since you are using the FeatureMerger, I don't think you need any more special operation.
When REQUESTOR is left table and SUPPLIER is right table, the set union of MERGED features and NOT_MERGED features is equivalent to the lett outer join result.
MERGED --> inner join
MERGED and NOT_MERGED --> left outer join
MERGED and UNREFERENCED --> right outer join
* except case of unconditional merging
Remember the Venn diagram :-) http://en.wikipedia.org/wiki/Venn_diagram
Takashi