Click to See Complete Forum and Search --> : Join


Jonas Bergman
August 9th, 1999, 09:32 AM
In Access, how can I join one Table with a Select Statement, e.g.
Club Left Join (Select...)
instead of first creating one query and joining the table on this query e.g.
Club Left Join Query1

Lothar Haensler
August 10th, 1999, 02:28 AM
syntax goes something like that:

SELECT * FROM firsttable LEFT JOIN secondtable ON firsttable.keyfield = secondtable.keyfield