gpt4 book ai didi

php - 在一个字段中搜索整个单词,只搜索单词

转载 作者:可可西里 更新时间:2023-10-31 23:22:45 27 4
gpt4 key购买 nike

我有一个带有关键字搜索的 PHP 界面,使用具有关键字字段的 DB(MySQL)。

关键字字段的设置方式如下,它是一个varchar,所有单词的格式如下...

the, there, theyre, their, thermal etc...

如果我只想从搜索中返回确切的单词“the”,这将如何实现?

我已经尝试在 PHP 中使用 'the%''%the' 但它没有返回 all关键字出现的行。

有没有更好(更准确)的方法来解决这个问题?

谢谢

最佳答案

如果要选择完全关键字the的行:

SELECT * FROM table WHERE keyword='the'

如果要选择其中包含关键字 the anywhere 的行:

SELECT * FROM table WHERE keyword LIKE '%the%'

如果要选择关键字the 开头的行:

SELECT * FROM table WHERE keyword LIKE 'the%'

如果你想选择结束关键字the的行:

SELECT * FROM table WHERE keyword LIKE '%the'

关于php - 在一个字段中搜索整个单词,只搜索单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13236259/

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