Example Query that I want to execute in MS Access SQL:
SELECT *
FROM TableA AS a
FULL OUTER JOIN TableB AS b
ON a.key = b.key
WHERE a.key IS NULL
OR b.key IS NULL
Since MS Access SQL does not allow FULL OUTER JOIN, I tried using the code below but the results aren't right.
SELECT *
FROM (TableA AS a
LEFT JOIN TableB AS b
ON a.key = b.key)
RIGHT JOIN TableB AS c
ON a.key = c.key
WHERE b.key IS NULL
OR a.key IS NULL
Does anyone know how to construct the MS Access SQL equivalent of the Example Query above that I'm trying to execute?