Clipper2000
Programmer
Hi,
I have a SQL statement (as below) that works fine when run; however, after I save it and the next time I open the query, Access change the "(" to "[" and added an extra period (".") at the end. ????? why ???? Help please!
Some how Access changed my second select clause to this when saved (note the extra period at the end:
I have a SQL statement (as below) that works fine when run; however, after I save it and the next time I open the query, Access change the "(" to "[" and added an extra period (".") at the end. ????? why ???? Help please!
Code:
SELECT B.GLM, A.Description, A.Accpac, A.Amount, A.Category, A.Period, A.Year
FROM [tbl90707(Single)] A INNER JOIN (SELECT DISTINCT GLM, Accpac FROM [GLM:ACCPAC]) As B ON
A.Accpac = B.Accpac
WHERE A.Accpac < "40000" AND A.Category <>"CFI" AND A.Period = 11 and A.Year = 2004
Some how Access changed my second select clause to this when saved (note the extra period at the end:
Code:
INNER JOIN [SELECT DISTINCT GLM, Accpac FROM [GLM:ACCPAC]]. As B