美文网首页
mySql 操作语句

mySql 操作语句

作者: 你我的微笑 | 来源:发表于2019-06-10 17:26 被阅读0次

关键词模糊搜索

$keyWord = $queryArr['keyWord'];
$sql = "select * from $table where is_delete=0 and title  like '%" .$keyWord."%'" ;

日期区间查询

$startDate = $queryArr['startDate'];
$endDate = $queryArr['endDate'];
$sql = "select * from $table where is_delete=0 and DATE_FORMAT(create_time,'%Y-%m-%d') BETWEEN '".$startDate."' and '".$endDate."'";

相关文章

网友评论

      本文标题:mySql 操作语句

      本文链接:https://www.haomeiwen.com/subject/oihtfctx.html