Hi Madhukar,
In APD , following joins will support.
Transformation "Join"
Use
With this transformation you can join two data sources with one or more common fields (database function Join).
Three types of join are supported:
- INNER JOIN: Join data records with identical values in the join fields.
- LEFT OUTER JOIN: In contrast to the INNER JOIN, all data records of the left table occur in the result, even if no corresponding data record is found in the right table.
- FULL OUTER JOIN: This join does more than the LEFT OUTER JOIN; all data records of the right side occur in the result, even if there is no corresponding data record on the left side.
Thank you,
Nanda