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遇到经典例子--(遇到就写)的主要内容,如果未能解决你的问题,请参考以下文章

几个关于js数组方法reduce的经典片段

BootStrap有用代码片段(持续总结)

BootStrap实用代码片段(持续总结)

庖丁解牛,这八个MySQL经典错误,你遇到几个?

js数组高阶方法reduce经典用法代码分享

js数组高阶方法reduce经典用法代码分享