本篇主要介紹php mysql like 實作多關鍵字搜尋的方法,有興趣的朋友參考下,希望對大家有幫助。
或叫,分詞檢索資料庫
$res = mysql_query("select * from peter where id like '%中草藥%' and '%6%'") ; //這樣寫是報錯的;
$res = mysql_query("select * from peter where id like '%中草藥%' or '%6%'"); //而這樣寫是正確的;奇怪~
$res = mysql_query("select * from peter where id like '%中草藥%' and id like '%6%'"); //這樣寫是正確的;
$res = mysql_query("select * from peter where id like '%中草藥%' or id like '%6%'"); //這樣寫都是正確的;
以上就是本文的全部內容,希望對大家的學習有所幫助。
相關推薦:
#
以上是php mysql like 實作多關鍵字搜尋的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!