Mysql按日、周、月进行分组统计

2022/8/28 2:25:11

本文主要是介绍Mysql按日、周、月进行分组统计,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1)按天统计:

select DATE_FORMAT(start_time,'%Y%m%d') days,count(product_no) count from test group by days;

2)按周统计:

select DATE_FORMAT(start_time,'%Y%u') weeks,count(product_no) count from test group by weeks;

3)按月统计:

select DATE_FORMAT(start_time,'%Y%m') months,count(product_no) count from test group bymonths;

 



这篇关于Mysql按日、周、月进行分组统计的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程