我有一个列,其中有两个关键字google plus
。如果我有一个完整的单词,如google
或plus
或两者,我可以从我的数据库中搜索他们google plus
而非goo
或plu
。
我试图通过LIKE
功能来满足我的需求,但没有帮助。
感谢
答案 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%'