MySQL遇到经典例子--(遇到就写)
Posted QinXiao.Shou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL遇到经典例子--(遇到就写)相关的知识,希望对你有一定的参考价值。
1,一般的搜索只会搜索标题,也有特殊的情况,就是标题和内容一起搜索!
1 -- 模糊搜索只是搜索标题 2 $sql = "select count(*) as sum from publish where pub_title like ‘%{$keyword}%‘ or pub_content like ‘%{$keyword}%‘"; 3 4 -- 模糊搜索搜索标题和内容 5 $sql = "select * from publish left join user on pub_owner = user_name where pub_title like ‘%{$keyword}%‘ or pub_content like ‘%{$keyword}%‘ order by pub_time desc limit $offset, $rowsPerPage";
以上是关于MySQL遇到经典例子--(遇到就写)的主要内容,如果未能解决你的问题,请参考以下文章