J
John
Hi
I have three tables with a common id with which they can be linked. I need
to merge them in a way that the resultant table has all records from three
tables. Below is what sort of result I am expecting;
Table 1
ID Value1
1 A1
Table 2
ID Value2
1 A2
2 B2
Table 1
ID Value3
2 B3
3 C3
Result expected;
ID Value1 Value2 Value3
1 A1 A2 <blank>
2 <blank> B2 B3
3 <blank> <blank> C3
Columns are blank where no records match for that table.
How can I go about doing this?
Thanks
Regards
I have three tables with a common id with which they can be linked. I need
to merge them in a way that the resultant table has all records from three
tables. Below is what sort of result I am expecting;
Table 1
ID Value1
1 A1
Table 2
ID Value2
1 A2
2 B2
Table 1
ID Value3
2 B3
3 C3
Result expected;
ID Value1 Value2 Value3
1 A1 A2 <blank>
2 <blank> B2 B3
3 <blank> <blank> C3
Columns are blank where no records match for that table.
How can I go about doing this?
Thanks
Regards