M
MethMath
Hi, got stuck on a presumably simple matter (for an expert), but cannot find
any solution: How do I do a FULL JOIN in Access ? I have two tables, tblA and
tblB, with the following
tblA
************
ID DATA
1 AA
2 BB
3 CC
4 DD
5 EE
6 FF
tblB
************
ID DATA
2 BBBB
3 CCCC
4 DDDD
5 EEEE
6 FFFF
7 GGGG
and I want to construct an SQL query to produce the following FULL JOIN
output when making a JOIN on tblA.ID=tblB.ID:
tblA.DATA tblB.DATA
******** ********
AA -
BB BBBB
CC CCCC
DD DDDD
EE EEEE
FF FFFF
- GGGG
Would appreciate to get any clues as to how the SQL-string should be designed.
any solution: How do I do a FULL JOIN in Access ? I have two tables, tblA and
tblB, with the following
tblA
************
ID DATA
1 AA
2 BB
3 CC
4 DD
5 EE
6 FF
tblB
************
ID DATA
2 BBBB
3 CCCC
4 DDDD
5 EEEE
6 FFFF
7 GGGG
and I want to construct an SQL query to produce the following FULL JOIN
output when making a JOIN on tblA.ID=tblB.ID:
tblA.DATA tblB.DATA
******** ********
AA -
BB BBBB
CC CCCC
DD DDDD
EE EEEE
FF FFFF
- GGGG
Would appreciate to get any clues as to how the SQL-string should be designed.