SQL Error

K

Kelly

Does anyone know why I get the following error? The
specified field () could refer to more than one table
listed in the FROM clause of your SQL statement?
 
M

mdas

You have a field called, say, "Field1" and that field name exists in 2 or
more of the tables in the SQL statement. The statement only includes the
name of the field, not the name of the table and field

You'll have to refer to the table and field name, ie.
[table1].[field1] instead of just [field1]

hth,
-M
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top