I also ried that but the same error occurs. I'm actually doing the query in Visual Basic. When you try to queyr there, the syntax must be:
"select * from Table 1"............. you need to put open/close double qoute. so if i will try your suggestion it will be:
"select * from "Table 1""........... and 'Syntax Error' occurs..........
Have you already encountered this? THANK YOU VERY for your reply. I appreciate it so much. But I think it's not the right solution to my problem. Thank you again.
Quote:
Originally posted by mirtheil
You need to use double quote around tables with spaces in the name. So in your example, it should be:
Select * from "Table 1"
|