Hi:
I want to join a table1 with table2 in a common key field which should contain all rows from table1 and also rows from table2 which do not match the key field.
For example:
Table1
1 a
2 b
3 c
Table2
1 a
4 d
5 e
The join should show:
1 a
2 b
3 c
4 d
5 e
How is this done with a single query? Or do we need to do it with multiple queries storing results in temporary tables?
Chris Vasanth
I want to join a table1 with table2 in a common key field which should contain all rows from table1 and also rows from table2 which do not match the key field.
For example:
Table1
1 a
2 b
3 c
Table2
1 a
4 d
5 e
The join should show:
1 a
2 b
3 c
4 d
5 e
How is this done with a single query? Or do we need to do it with multiple queries storing results in temporary tables?
Chris Vasanth