博客列表 >thinkphp时间区域内查询

thinkphp时间区域内查询

兵临城下的博客
兵临城下的博客原创
2018年07月20日 14:06:321730浏览

 $Model = new \Think\Model();

$sqlstr = 'SELECT b.district,count(a.centercode) as count from wx_archives a,wx_nation b WHERE a.centercode=b.code and a.step_status=9 and a.examine_status=1 and unix_timestamp(a.add_time) > '.strtotime($datebegin).' and unix_timestamp(a.add_time) < '.strtotime($dateend).' GROUP BY a.centercode ORDER BY count desc';

$data = $Model->query($sqlstr);


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议