I have two very simple tables, with a common field on which I need to perform an outer join, so that I can return a combined list of all the records from both tables.
I've read somewhere that Access does not support ful
select a inner join b on a.pk = b.pk
union all
select a left outer join b on a.pk = b.pk
where b.pk is null
union all
select b left outer join a on b.pk = a.pk
where a.pk is null
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.