mysql 查询最近6个月的数据(每个月的数据,没有数据的为0)
短信预约 -IT技能 免费直播动态提醒
select date_table.lastDays as monthValue,IFNULL(temp.count, 0 ) as eventCount from ( SELECT date_format(@lastDay := last_day( date_add(@lastDay,interval 1 month ) ) ,'%Y-%m' ) lastDays from (SELECT @lastDay := date_add(curdate(),interval -6 month) from mysql.help_topic limit 6) a ) date_table left join( select DATE_FORMAT(sc.时间,'%Y-%m') as monthValue, count(sc.统计参数) as count from 表名 sc GROUP BY DATE_FORMAT(sc.时间,'%Y-%m') )temp on temp.monthValue = date_table.lastDays
结果:
来源地址:https://blog.csdn.net/weixin_47962813/article/details/128083703
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341