Hello Everyone
Can we do a join other than Match on Equality using CE Functions?
ie.. would like to join two tables using a comparison operator (<=, >= etc..)
Example:
| TableA | ID | StartDate | EndDate | Region |
| record 1 | 1000 | 1/01/2014 | 15/07/2014 | ABC |
| record 2 | 1000 | 16/07/2014 | 30/11/2014 | DEF |
| TableB | ID | StartDate | EndDate | Group |
| record 1 | 1000 | 1/01/2014 | 30/12/2014 | XYZ |
Would like to perform LeftOuterJoin on TableA.ID = TableB.ID AND (TableA.EndDate <= TableB.StartDate) AND (TableA.EndDate >= TableB.EndDate) using CE Functions
Thanks