Invalid argument

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I get an invalid argument msg in make table query but not in select query
using exactly the same query.
 
Not need the .mdb but wanted to see your SQL for the make table query.

JeffT said:
KARL DEWEY said:
Post your SQL.

SELECT [Tashman data06].*
FROM [Tashman data06]
WHERE ((([Tashman data06].[Code Area])="6045"));

Don't you need the mdb file?
 
KARL DEWEY said:
Not need the .mdb but wanted to see your SQL for the make table query.

JeffT said:
KARL DEWEY said:
Post your SQL.

:

I get an invalid argument msg in make table query but not in select query
using exactly the same query.

SELECT [Tashman data06].*
FROM [Tashman data06]
WHERE ((([Tashman data06].[Code Area])="6045"));

Don't you need the mdb file?

SELECT [Tashman data06].* INTO sistersdata
FROM [Tashman data06]
WHERE ((([Tashman data06].[Code Area])="6045"));
 
Back
Top