MySQL关键字搜索?

时间:2012-01-01 22:18:49

标签: mysql keyword

我有一个列,其中有两个关键字google plus。如果我有一个完整的单词,如googleplus或两者,我可以从我的数据库中搜索他们google plus而非gooplu

我试图通过LIKE功能来满足我的需求,但没有帮助。

感谢

3 个答案:

答案 0 :(得分:1)

试试这个:

SELECT keyword FROM tablename WHERE keyword LIKE '%google%' OR keyword LIKE '%plus%'

答案 1 :(得分:0)

这不适用于关系数据库或LIKE。你想要像Lucene这样可以索引值并允许你进行搜索的东西。

答案 2 :(得分:0)

col LIKE '%google%' OR col LIKE '%plus%' OR col LIKE '%google plus%'