Sql 每月,每日,每年统计

来源:互联网 发布:网络歌曲 什么什水自流 编辑:程序博客网 时间:2024/05/16 08:29

1、每年select year(ordertime) 年, sum(Total) 销售合计from 订单表group by year(ordertime)

2、每月select year(ordertime) 年, month(ordertime) 月, sum(Total) 销售合计from 订单表group by year(ordertime), month(ordertime

3、每日select year(ordertime) 年, month(ordertime) 月, day(ordertime) 日, sum(Total) 销售合计from 订单表group by year(ordertime), month(ordertime), day(ordertime)

 

另外每日也可以这样:select convert(char(8),ordertime,112) dt, sum(Total) 销售合计from 订单表group by convert(char(8),ordertime,112) 如果需要增加查询条件,在from后加where 即可。