MS Access 中具有一种类型的查询参数的多个文本字段
我的表单有多个输入文本框。为了保持简单;我需要使用用户输入的文本搜索数据库字段。示例:
- 包含术语“bus”(在文本框 1 中)
- 、“tracks”(在文本框 2 中)
- 和“route”(在文本框 3 中)。
当我点击“搜索”按钮时,应该填充结果。
现在我正在使用它作为一个文本区域输入
我的查询是:
Like "*" & [Forms]![ATG]![ContainsSearch] & "*"
My form has multiple Input Text Boxes. To keep it simple; I need to search the database field with user inputted text. Example:
- Contains the term "bus" (in text box 1)
- and "tracks" (in text box 2)
- and "route" (in text box3).
When I hit the "Search" button the result should be populated.
Right now I am using this for one text area input
My query is:
Like "*" & [Forms]![ATG]![ContainsSearch] & "*"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OP提供的答案如下(启动社区维基)
OP provided answer is as follows (starting community wiki)