php mysql like 实现多关键词搜索的方法

前端之家收集整理的这篇文章主要介绍了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 实现多关键词搜索方法全部内容了,希望大家多多支持编程之家~

原文链接:https://www.f2er.com/php/18662.html

猜你在找的PHP相关文章