G
Guest
I need an outside join or many-to-many join
I have two lists, most of which have the same data, but both with different data. I want the union between the two
Table1 = Query3
Table2 = Query3
the field i want to join is called id
I have something like this
SELECT Query3a.id, Query3b.i
FROM ( ( SELECT id FROM Query3
UNIO
SELECT id FROM Query3b) As
LEFT JOIN Query3a ON c.id = a.i
) LEFT JOIN Query3b ON c.id = b.i
Which doesn't work and probably indicates that I'm lost
Any help? Neither are particular big lists..
Marcus.
I have two lists, most of which have the same data, but both with different data. I want the union between the two
Table1 = Query3
Table2 = Query3
the field i want to join is called id
I have something like this
SELECT Query3a.id, Query3b.i
FROM ( ( SELECT id FROM Query3
UNIO
SELECT id FROM Query3b) As
LEFT JOIN Query3a ON c.id = a.i
) LEFT JOIN Query3b ON c.id = b.i
Which doesn't work and probably indicates that I'm lost
Any help? Neither are particular big lists..
Marcus.