时间:2021-07-01 10:21:17 帮助过:6人阅读
或者叫,分词检索数据库
$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读取CSV大文件导入数据库的方法
php实现和c#一致的DES加密解密的方法
PHP实践教程之过滤、验证、转义与密码的方法
以上就是php mysql like 实现多关键词搜索的方法的详细内容,更多请关注Gxl网其它相关文章!