Access changing syntax
I have the following query
SELECT [s004 - Fee Schedule most used].* INTO [Fee Schedule unique]
FROM [s004 - Fee Schedule most used] INNER JOIN (Select [myid], MAX(MaxofIPA1) as MAXIPA
from [s004 - Fee Schedule most used] Group by [myid]) AS M ON [s004 - Fee Schedule most used].myid = M.myid;
The query will save an run the first time I use the query however when I try to run it again, I receive the an invalid argument. (The when I go back into Access I have the following Query.
SELECT [s004 - Fee Schedule most used].* INTO [Fee Schedule unique]
FROM [s004 - Fee Schedule most used] INNER JOIN [Select [myid], MAX(MaxofIPA1) as MAXIPA
from [s004 - Fee Schedule most used] Group by [myid]
]. AS M ON [s004 - Fee Schedule most used].myid = M.myid;
Access is changing my “(“ to a “[“ and my “)” to “].” in my inner join statement.
What can I do to prevent this and have my query run.
Any help would be appreciated...
I have the following query
SELECT [s004 - Fee Schedule most used].* INTO [Fee Schedule unique]
FROM [s004 - Fee Schedule most used] INNER JOIN (Select [myid], MAX(MaxofIPA1) as MAXIPA
from [s004 - Fee Schedule most used] Group by [myid]) AS M ON [s004 - Fee Schedule most used].myid = M.myid;
The query will save an run the first time I use the query however when I try to run it again, I receive the an invalid argument. (The when I go back into Access I have the following Query.
SELECT [s004 - Fee Schedule most used].* INTO [Fee Schedule unique]
FROM [s004 - Fee Schedule most used] INNER JOIN [Select [myid], MAX(MaxofIPA1) as MAXIPA
from [s004 - Fee Schedule most used] Group by [myid]
]. AS M ON [s004 - Fee Schedule most used].myid = M.myid;
Access is changing my “(“ to a “[“ and my “)” to “].” in my inner join statement.
What can I do to prevent this and have my query run.
Any help would be appreciated...