首页 > 数据库技术 > 详细

[转]Sql按年份.月份.每天统计数量

时间:2015-09-10 12:38:03      阅读:361      评论:0      收藏:0      [点我收藏+]

1、每年

select year(ordertime) 年, sum(Total) 合计 fromgroup by year(ordertime)

2、每月

select year(ordertime) 年, month(ordertime) 月, sum(Total) 合计 fromgroup by year(ordertime), month(ordertime)

3、每日

select year(ordertime) 年, month(ordertime) 月, day(ordertime) 日, sum(Total) 合计 fromgroup by year(ordertime), month(ordertime), day(ordertime)
select convert(char(8),ordertime,112) dt, sum(Total) 合计 fromgroup by convert(char(8),ordertime,112)

 

 

 

[转]Sql按年份.月份.每天统计数量

原文:http://www.cnblogs.com/iiwen/p/4797287.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!