MySQL按日期分組統計(按天統計,按月統計)


以下為您演示MySQL常用的日期分組統計方法:

按月統計(一)

select date_format(create_time, '%Y-%m') mont, count(*) coun
from t_content
group by date_format(create_time, '%Y-%m');

按天統計(二)

SELECT
    date_format(created_at, '%Y-%m-%d') dat,count(*) count
FROM
    `fook_coupon_syn`

WHERE operation = 'OrderCode'
group by date_format(created_at, '%Y-%m-%d');

 

鏈接:https://blog.csdn.net/lpw_cn/article/details/89487801


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM