gpt4 book ai didi

php - laravel全文搜索多个关键字在一起

转载 作者:行者123 更新时间:2023-11-30 22:42:30 28 4
gpt4 key购买 nike

我正在构建一个 laravel 项目搜索字段,我在其中使用全文搜索。我已设法让它发挥作用,但我无法同时搜索多个关键字。
例子:我有一行值为 one two three four 如果我搜索 two three 它会找到所有带有 twothree 的条目 在其中。但我希望它找到同时包含 twothree

的条目

SQL查询:

DB::raw("select id, name, text, image, publishDate from game
where match (name) AGAINST ('*$searchphrase*' IN BOOLEAN MODE) LIMIT 5")

最佳答案

请看这个:http://goo.gl/lZIKBkhttps://dev.mysql.com/doc/refman/5.5/en/fulltext-boolean.html

"+" stands for AND

"-" stands for NOT

[no operator] implies OR

您没有任何暗示“或”的运算符。


关于php - laravel全文搜索多个关键字在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30730840/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com