美文网首页
语句统计每天、每月、每年的数据

语句统计每天、每月、每年的数据

作者: 吃西瓜的的小青年 | 来源:发表于2019-08-20 08:55 被阅读0次

    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)

    相关文章

      网友评论

          本文标题:语句统计每天、每月、每年的数据

          本文链接:https://www.haomeiwen.com/subject/hqhusctx.html