mysql根据日,周,月分组统计
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
本文出自 “一个程序媛的自我修养” 博客,请务必保留此出处http://qianqiansun.blog.51cto.com/13271301/1971273
以上是关于mysql根据日,周,月分组统计的主要内容,如果未能解决你的问题,请参考以下文章