欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php mysql like 實(shí)現(xiàn)多關(guān)鍵詞搜索的方法

 更新時(shí)間:2016年10月29日 10:03:49   投稿:jingxian  
下面小編就為大家?guī)硪黄猵hp mysql like 實(shí)現(xiàn)多關(guān)鍵詞搜索的方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

或者叫,分詞檢索數(shù)據(jù)庫

$res = mysql_query("select * from peter where id like '%中草藥%' and '%6%'"); //這樣寫是報(bào)錯(cuò)的;

$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%'"); //這樣寫都是正確的;

以上就是小編為大家?guī)淼膒hp mysql like 實(shí)現(xiàn)多關(guān)鍵詞搜索的方法全部內(nèi)容了,希望大家多多支持腳本之家~

相關(guān)文章

最新評論