sql将数据按月汇总显示

select datepart(year,date),datepart(month,date),sum(需要合计的数据项) from

group by datepart(year,date),datepart(month,date) order by datepart(year,date),datepart(month,date)

转载于:https://blog.51cto.com/mikehopes/500641

    原文作者:weixin_33908217
    原文地址: https://blog.csdn.net/weixin_33908217/article/details/92828870
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞