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?
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?