下面讲讲关于根据日,周,月分组统计mysql数据,文字的奥妙在于贴近主题相关。所以,闲话就不谈了,我们直接看下文吧,相信看完根据日,周,月分组统计mysql数据这篇文章你一定会有所受益。
根据日统计:
select year(create_datetime),month(create_datetime),day(create_datetime),count(*) from redpacket group by year(create_datetime),month(create_datetime), day(create_datetime);
根据周统计:
select FROM_DAYS(TO_DAYS(create_datetime) -MOD(TO_DAYS(create_datetime) -2, 7)) AS week from redpacket group by week;
根据月统计:
select count(*) from redpacket group by year(create_datetime),month(create_datetime);
对于以上根据日,周,月分组统计mysql数据相关内容,大家还有什么不明白的地方吗?或者想要了解更多相关,可以继续关注我们的行业资讯板块。