Syntax error

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

Guest

What is wrong with my syntax
In (SELECT [2DNdetail]![Deliv note detail ID]
FROM 2DNdetail INNER JOIN 4Shipdetail ON [2DNdetail]![Deliv note detail ID]
= [4Shipdetail]![Dilivery note Detail ID] )
 
I had some problems with Table names starting with digit character before.

Try enclosing the Table names in square brackets like:

In (SELECT [2DNdetail].[Deliv note detail ID]
FROM [2DNdetail] INNER JOIN [4Shipdetail]
ON [2DNdetail].[Deliv note detail ID] = [4Shipdetail].[Dilivery note Detail
ID])
 

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

Similar Threads

Parameter values??? 1
Update Querie D Sum 1
DSum in update query 7
Lookup in a Query 1
Email Bounce Error 3
Datasheet View Column AutoFilter Error 3
Access Access 2007 error message 0
Union does not show all records 5

Back
Top