hi,
You would create a UNION query, combining the results from multiple queries,
as OUTER JOIN is not allowed in Access. To create a pseudo OUTER JOIN, you
could try something like:
SELECT Employees.LastName, Employees.City, Suppliers.CompanyName,
Suppliers.City
FROM Employees INNER JOIN Suppliers ON Employees.City = Suppliers.City
UNION ALL
SELECT Employees.LastName, Employees.City, Suppliers.CompanyName,
Suppliers.City
FROM Employees LEFT JOIN Suppliers ON Employees.City = Suppliers.City
WHERE (((Suppliers.City) Is Null))
UNION ALL
SELECT Employees.LastName, Employees.City, Suppliers.CompanyName,
Suppliers.City
FROM Employees RIGHT JOIN Suppliers ON Employees.City = Suppliers.City
WHERE Employees.City is null;
In this example, the first query is an INNER JOIN. The second is a LEFT
JOIN, and the last query is a RIGHT JOIN. You could use this in practice
with your own query.
Hope this helps,
geebee