postgres 全文搜索类似运算符

发布于 2024-10-09 20:53:08 字数 198 浏览 1 评论 0原文

用于搜索与 like 运算符匹配的文本的查询是什么。

我问的是全文搜索查询,它的形式是

 SELECT * FROM eventlogging WHERE description_tsv @@ plainto_tsquery('mess');   

我想要带有“消息”的结果,但不是它不返回任何内容

what is the query to use to search for text that matches the like operator.

I am asking about full text search query, which is of the form

 SELECT * FROM eventlogging WHERE description_tsv @@ plainto_tsquery('mess');   

I want results with "message" as well but right not it does not return anything

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

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

发布评论

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

评论(2

烟雨扶苏 2024-10-16 20:53:08

如果我阅读手册中的说明 正确的话,您需要使用 to_tsquery() 而不是 plainto_tsquery 以及通配符来允许前缀匹配:

SELECT * 
FROM eventlogging 
WHERE description_tsv @@ to_tsquery('mess:*');

If I read the description in the manual correctly, you'll need to use to_tsquery() instead of plainto_tsquery together with a wildcard to allow prefix matching:

SELECT * 
FROM eventlogging 
WHERE description_tsv @@ to_tsquery('mess:*');
葵雨 2024-10-16 20:53:08

您可以使用 LIKE 来精确匹配大小写,或使用 ILIKE 来不区分大小写。使用 % 作为通配符。

这将匹配其中包含“SomeThing”的任何内容(区分大小写)。

SELECT * FROM table WHERE name LIKE '%SomeThing%'

这将匹配以“ing”结尾的任何内容(不区分大小写)。

SELECT * FROM table WHERE name ILIKE '%ing'

You can use LIKE for exact case matches or ILIKE for case insensitive. Use the % as your wildcard.

This will match anything with 'SomeThing' in it (case sensitive).

SELECT * FROM table WHERE name LIKE '%SomeThing%'

This will match anything ending with "ing" (case insensitive).

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