Oracle 查询字符串包含连字符

发布于 2024-11-19 20:33:56 字数 279 浏览 1 评论 0原文

我在 Oracle 上运行的查询应该允许连字符。结果应该与包括连字符的确切字符串匹配,如下所示:

SELECT <field> 
  FROM <table> 
 WHERE LOWER(field) LIKE '%-pa%';

但是结果显示“web-page”、“web -page”以及“web page”。但是,在这种情况下我只想找到“网页”和“网页”。我尝试用反斜杠转义连字符,但这导致找不到记录。有人可以给我一个关于如何进行这项工作的提示吗?

I have query that I run on Oracle that is supposed to allow hyphen characters. The results are supposed to match the exact String including the hyphen character as follows:

SELECT <field> 
  FROM <table> 
 WHERE LOWER(field) LIKE '%-pa%';

The results however show "web-page", "web -page" as well as "web page". However, I only would like to find "web-page" and "web -page" in this case. I tried to escape the hyphen character with a backslash but that results in no records found. Can anybody give me a hint on how to make this work?

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

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

发布评论

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

评论(2

夜清冷一曲。 2024-11-26 20:33:57

这不是我对 Oracle 如何处理连字符的观察。这是我所看到的简短示例:

SQL> select * from fb;

ID
----------
Web-Page
Web Page
Web -Page

SQL> select * from fb where lower(id) like '%-pa%';

ID
----------
Web-Page
Web -Page

您确定没有使用下划线而不是连字符吗?下划线是单个字符通配符。

That's not my observation of how Oracle treats hyphens. Here's a brief sample of what I see:

SQL> select * from fb;

ID
----------
Web-Page
Web Page
Web -Page

SQL> select * from fb where lower(id) like '%-pa%';

ID
----------
Web-Page
Web -Page

Are you sure you're not using the underscore instead of the hyphen? The underscore is a single character wild card.

幽梦紫曦~ 2024-11-26 20:33:57

通常连字符不需要转义,但你可以尝试

select <field> from <table> where lower(field) like '%X-pa%' escape 'X';

代替“X”,你可以使用任何任意字符

Normaly the hyphen shouldn't need to be escaped, but you can try

select <field> from <table> where lower(field) like '%X-pa%' escape 'X';

instead of 'X', you can use any arbitrary character

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