I have two tables of data that I need to join into a single table. UNION ALL
doesn't work because I need to have a single row (SN
) with all associated info and not duplicate SN
s. Examples of the two tables and the expected result are below. Any help would be appreciated.
Table 1
SN Reading
1. 12
2. 14
3. 12
4. 15
5. 11
Table 2
SN Reading
1. 75
2. 74
4. 74
5. 74
6. 75
Joined Table (1 and 2)
SN R1 R2
1. 12 75
2. 14 74
3. 12
4. 15 74
5. 11 74
6. 75