Mysql MATCH AGAINST - IN BOOLEAN MODE 问题

发布于 2024-09-09 19:40:07 字数 382 浏览 3 评论 0原文

我需要找到以下字符串: 'c++'

我的 sql 查询如下所示:

SELECT *
FROM shop_product
WHERE
   MATCH(shop_product.name, shop_product.product_model, shop_product.keywords, shop_product.part_number, shop_product.upc, shop_product.brand_name)
   AGAINST ('c++' IN BOOLEAN MODE))
GROUP BY `product_id`
LIMIT 0, 25

即使存在包含该单词的记录,此脚本也不会返回任何结果。 怎么解决这个问题呢?

谢谢。

I need to find the following string: 'c++'

My sql query look like this:

SELECT *
FROM shop_product
WHERE
   MATCH(shop_product.name, shop_product.product_model, shop_product.keywords, shop_product.part_number, shop_product.upc, shop_product.brand_name)
   AGAINST ('c++' IN BOOLEAN MODE))
GROUP BY `product_id`
LIMIT 0, 25

This script does not return any results even if there exists records containing that word.
How to solve this?

Thanks.

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

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

发布评论

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

评论(3

坠似风落 2024-09-16 19:40:07

在布尔模式或自然模式下不会搜索少于四个字符的单词。

Words with less than four characters are not searched in BOOLEAN MODE or NATURAL MODE.

短暂陪伴 2024-09-16 19:40:07

“+”不是“单词”字符。也许您必须使用 LIKE 或 REGEXP。

"+" isn't a "word" character. Probably you have to use LIKE or REGEXP.

嘿嘿嘿 2024-09-16 19:40:07

您可以在没有布尔模式的情况下进行搜索:

SELECT *
FROM shop_product
WHERE
   MATCH(shop_product.name, shop_product.product_model, shop_product.keywords, shop_product.part_number, shop_product.upc, shop_product.brand_name)
   AGAINST ('c++'))
GROUP BY `product_id`
LIMIT 0, 25

我认为 + 只是布尔模式的特殊字符。

You could search without BOOLEAN MODE:

SELECT *
FROM shop_product
WHERE
   MATCH(shop_product.name, shop_product.product_model, shop_product.keywords, shop_product.part_number, shop_product.upc, shop_product.brand_name)
   AGAINST ('c++'))
GROUP BY `product_id`
LIMIT 0, 25

I think the + is just for boolean mode a special character.

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