Datatable A:
Key1 | Key2 | A | B
[ 1 1 ... ]
[ 1 2 ... ]
Datatable B:
Key1 | Key2 | x | Y
[ 1 1 ... ]
[ 1 2 ... ]
Desired result:
Key1 | Key2 | A | B | X | Y
[ 1 1 ... ]
[ 1 2 ... ]
In the end result columns A, B, X and Y have been added to the new datatable. This happened because key1 and key2 were equal in both datatable A and B. Would this be possible to do with a full outer join, given a condition - (Key1 and Key2 are euqal) ?