Hi gurus,
I have the following statement which works fine in access:
SELECT table1.test FROM table1 JOIN table2 ON table1.col = table2.col
I run into a problem when I do the following:
SELECT a.test FROM table1 AS a JOIN table2 AS b ON a.col = b.col
It throws a syntax error on the FROM claus.. Can anyone tell me what I'm missing? Thanks..