Is it possible to do a 3-table join in MS-Access?
4 answers
MS-Access / Jet allows all types of multi-table joins available in different SQL style. For example, here's an example of a hierarchical example with three tables (a little more real than the other answers here):
SELECT
x.FirstName,
x.Surname,
r.RegionName,
c.CountryName
FROM
(Customer x LEFT JOIN Region r
ON r.ID=x.RegionID)
LEFT JOIN Country c
ON c.ID=r.CountryID
Or do you want to know how to do this using Visual Designer in MS-Access?
+8
a source to share