Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为我的 .mdb 数据库进行 ODBC 查询。我正在使用 mdbtools 驱动程序。代码是使用 Eclipse 用 C 语言编写的。唯一的问题是,当我写例如:
“从 MyTable 组中选择‘上周’”
它不起作用,因为它无法识别表格字段中的空格分隔符。我不知道 MDB 工具驱动程序使用的 SQL 语法。
MyTable 字段是:
ID jobs last week 1 .. ... 2 ...
有任何想法吗?
要使用空格分隔名称,您需要使用方括号。
"SELECT [last week] FROM MyTable GROUP"
这也适用于表名。