Microsoft Access:如何在文本过滤中输入逗号?

发布于 2024-11-15 21:21:23 字数 89 浏览 0 评论 0原文

我想在 Access 中执行文本过滤器搜索包含逗号的模式。但是当我使用 , 或将其放在双引号中时,Access 给了我一个错误。 如何搜索包含逗号字符的文本?谢谢。

I want to do a text filter in Access searching for a pattern that includes a comma. But when I used , or put it in double quotes, Access gave me an error.
How do I search for text containing the comma character? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味超标? 2024-11-22 21:21:23

首先,你的问题很不清楚。 “文本过滤器”是什么意思? “寻找模式”是什么意思?您收到什么样的错误消息?

对于下面的答案,我假设您要搜索的数据保存在文本字段中。

SQL 允许您这样做:

SELECT * FROM CompanyName WHERE CompanyName LIKE '*,*'

如果您使用 Access 表单过滤器属性,您的过滤器应如下所示:

strFilter = "CompanyName LIKE '*,*'"

First of all, your question is quite unclear. What do you mean by "text filter"? What do you mean by "searching for a pattern"? What kind of error message do you get?

For my answers below, I'm assuming that the data you want to search on is saved in a text field.

SQL allows you to do it like this:

SELECT * FROM CompanyName WHERE CompanyName LIKE '*,*'

If you're using the Access form filter property your filter should look like this:

strFilter = "CompanyName LIKE '*,*'"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文