I don't understand why I can get the following to work:
------------------------------------------------------------------------------
--
SELECT A.*, B.* FROM TableA AS A, TableA AS B IN 'C:\......'
WHERE A.USER_ID = B.USER_ID;
------------------------------------------------------------------------------
--
But the following leads to an error:
------------------------------------------------------------------------------
--
SELECT A.*, B.* FROM TableA As A INNER JOIN TableA As B IN 'C:\.....'
ON (A.USER_ID = B.USER_ID)
------------------------------------------------------------------------------
--
In the latter case I keep getting a Syntax error in the From clause and it
hangs on the IN word.
--
Message posted via AccessMonster.c om
------------------------------------------------------------------------------
--
SELECT A.*, B.* FROM TableA AS A, TableA AS B IN 'C:\......'
WHERE A.USER_ID = B.USER_ID;
------------------------------------------------------------------------------
--
But the following leads to an error:
------------------------------------------------------------------------------
--
SELECT A.*, B.* FROM TableA As A INNER JOIN TableA As B IN 'C:\.....'
ON (A.USER_ID = B.USER_ID)
------------------------------------------------------------------------------
--
In the latter case I keep getting a Syntax error in the From clause and it
hangs on the IN word.
--
Message posted via AccessMonster.c om
Comment