Please show me how to do this if at all possible.
I have to tables with the following fields and data:
TABLE1
UniqueID1 Tracking Description1
1 101 A
2 101 B
3 101 C
TABLE2
UniqueID2 Tracking Description2
7 101 X
8 101 Y
The two tables are not related in any way at all other than by the "Tracking" field.
I need to join the two tables such that the two descriptions fields appear side by side this way:
Tracking description1 description2
101 A X
101 B Y
101 C NULL
- No need to be ordered in any specific way.
- The number of matching records in either table could be
greater than in the other table or
they could be the same number.
- Tracking 101 is one instance of the join. Multiple Tracking numbers exist in the two tables that need to be joined in the same way.
thanks,
Kelele
I have to tables with the following fields and data:
TABLE1
UniqueID1 Tracking Description1
1 101 A
2 101 B
3 101 C
TABLE2
UniqueID2 Tracking Description2
7 101 X
8 101 Y
The two tables are not related in any way at all other than by the "Tracking" field.
I need to join the two tables such that the two descriptions fields appear side by side this way:
Tracking description1 description2
101 A X
101 B Y
101 C NULL
- No need to be ordered in any specific way.
- The number of matching records in either table could be
greater than in the other table or
they could be the same number.
- Tracking 101 is one instance of the join. Multiple Tracking numbers exist in the two tables that need to be joined in the same way.
thanks,
Kelele