I am using Access and i am trying to join two tables that have the following structure:
Table 1:
Col1 Col2 T1
C A 1.1
B A 1.2
D A 1.3
Table 2:
Col1 Col2 T2
C A 2.1
B A 2.2
E A 2.3
And i want the resulting table to be as the following table:
Col1 Col2 T1 T2
C A 1.1 2.1
B A 1.2 2.2
D A 1.3 0
E A 0 2.3
I tried so many solutions from the internet (outer join), but i am not getting the required results! I would really appreciate if someone could help me with this issue!!!