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.
我在 MS Access/VBA 中有一个 SQL 查询,它不能按预期工作。我想将连接的 SQL-varchar 与 VBA 变量进行比较:
SELECT * FROM Table1 Where Text1 & ' ' & Text2 like '%Test%'
但是生成的 sql 不起作用,我不知道为什么。
任何帮助,将不胜感激!
非常感谢!
我相信你真正想要的是:
SELECT * FROM Table1 WHERE Text1 & ' ' & Text2 LIKE '*Test*'
MS Access 将*用于通配符。
*