I used Access to construct this query by default it uses an inner join, but when I change it to outer I get this error. Any ideas? Thanks, in advance.
SELECT hotRods.Make, hotRods.Model, hotRods.Year, vertex.Make, vertex.Model, vertex.Year, hotRods.[Part #], vertex.[Part #]
FROM vertex
FULL JOIN hotRods
ON (vertex.Year = hotRods.Year) AND (hotRods.Model = vertex.Model)
AND (vertex.Make = hotRods.Make) AND (RIGHT(hotRods.[Part #], 6) = RIGHT(vertex.[Part #],6));