PostgreSQL 通配符 LIKE 用于任何单词列表

发布于 2024-10-16 05:27:57 字数 271 浏览 1 评论 0原文

我有一个大约 25 个单词的简单列表。我在 PostgreSQL 中有一个 varchar 字段,假设该列表是 ['foo', 'bar', 'baz']。我想在表中找到包含这些单词的任何行。这会起作用,但我想要更优雅的东西。

select *
from table
where (lower(value) like '%foo%' or lower(value) like '%bar%' or lower(value) like '%baz%')

I have a simple list of ~25 words. I have a varchar field in PostgreSQL, let's say that list is ['foo', 'bar', 'baz']. I want to find any row in my table that has any of those words. This will work, but I'd like something more elegant.

select *
from table
where (lower(value) like '%foo%' or lower(value) like '%bar%' or lower(value) like '%baz%')

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

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

发布评论

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

评论(5

故乡的云 2024-10-23 05:27:57

PostgreSQL 还支持完整的 POSIX 正则表达式

select * from table where value ~* 'foo|bar|baz';

~* 不区分大小写,~ 区分大小写。

另一种选择是使用 ANY

select * from table where value  like any (array['%foo%', '%bar%', '%baz%']);
select * from table where value ilike any (array['%foo%', '%bar%', '%baz%']);

您可以将 ANY 与任何产生布尔值的运算符一起使用。我怀疑正则表达式选项会更快,但 ANY 是您工具箱中的一个有用工具。

PostgreSQL also supports full POSIX regular expressions:

select * from table where value ~* 'foo|bar|baz';

The ~* is for a case insensitive match, ~ is case sensitive.

Another option is to use ANY:

select * from table where value  like any (array['%foo%', '%bar%', '%baz%']);
select * from table where value ilike any (array['%foo%', '%bar%', '%baz%']);

You can use ANY with any operator that yields a boolean. I suspect that the regex options would be quicker but ANY is a useful tool to have in your toolbox.

梦一生花开无言 2024-10-23 05:27:57

您可以使用 Postgres 的 类似于< /code>支持交替的运算符,即

select * from table where lower(value) similar to '%(foo|bar|baz)%';

You can use Postgres' SIMILAR TO operator which supports alternations, i.e.

select * from table where lower(value) similar to '%(foo|bar|baz)%';
宛菡 2024-10-23 05:27:57

实际上 PostgreSQL 中有一个运算符:

SELECT *
FROM table
WHERE lower(value) ~~ ANY('{%foo%,%bar%,%baz%}');

Actually there is an operator for that in PostgreSQL:

SELECT *
FROM table
WHERE lower(value) ~~ ANY('{%foo%,%bar%,%baz%}');
怪我太投入 2024-10-23 05:27:57

一种“优雅”的解决方案是使用全文搜索:http://www.postgresql.org/docs/9.0/interactive/textsearch.html" postgresql.org/docs/9.0/interactive/textsearch.html。然后您将使用全文搜索查询。

One 'elegant' solution would be to use full text search: http://www.postgresql.org/docs/9.0/interactive/textsearch.html. Then you would use full text search queries.

眼角的笑意。 2024-10-23 05:27:57

当前支持的所有版本(9.5 及更高版本)除了 LIKE 之外还允许模式匹配。

参考: https://www.postgresql.org/docs/current/functions-匹配.html

All currently supported versions (9.5 and up) allow pattern matching in addition to LIKE.

Reference: https://www.postgresql.org/docs/current/functions-matching.html

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