Joins in X++
There are basically four types of joins in Ax,
- Inner Join
- Outer Join
- Exists Join
- Notexists Join
Inner Join : Inner Join will return records from both Outer table and Inner table, only the records which are available in Inner table. Inner Join will also return duplicate records.Outer Join : Outer Join will return all the records from both Outer table and Inner table. Outer Join will also return duplicate records.Exists Join : Exists Join will return records only from Outer table which are available in Inner Table. It will not return any duplicate records.NotExists Join : NotExists Join will return records only from Outer table which are not available in Inner Table. It will not return any duplicate records.
Comments
Post a Comment