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 查询中搜索包含 (1)、(2) 等在之前和之后具有零个或多个字符的条目。但是,当我尝试查询时,它没有返回任何条目。下面是我的 SQL 的类似部分:
Like '%[(]1-9[)]%'
很抱歉,我无法提供其余的 SQL 代码。我知道加入工作正常,我只是在这部分遇到了麻烦。
谢谢
MS Access 中的通配符是'*',不是'%'。
'*'
'%'
所以,试试这个:
Like '*([1-9])*'