Hello,I have 3 tables:table_1key1 value1a 1b 2c 3d 4table_2key2 value2a 5b 6e 7f 8table_3key3 value3a 9c 10e 11g 12
How do i write a join query to merge all three tables into one table and give me the following result:key1 val1 key2 val2 key3 val3a 1 a 5 a 9b 2 b 6 NULL NULLc 3 NULL NULL c 10d 4 NULL NULL NULL NULLNULL NULL e 7 e 11NULL NULL f 8 NULL NULLNULL NULL NULL NULL g 12
Could anyone please help me create a query to join these three tables like this.Thank you. Justin