Having trouble getting the correct syntax for using subqueries in a JOIN in Microsoft Access.
In MS SQL 2008 I would do the following:
Select A.FIELD_1, B.FIELD_2
FROM table1 as A
LEFT JOIN (select FIELD_2 FROM table2) AS B ON A.FIELD_1=B.FIELD_2
Does MS Access allow subqueries in the joins?
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.