码迷,mamicode.com
首页 > 其他好文 > 详细

统计销售额

时间:2018-12-13 14:26:25      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:统计   需要   har   from   day   查询条件   mon   where   rom   


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 即可。









统计销售额

标签:统计   需要   har   from   day   查询条件   mon   where   rom   

原文地址:https://www.cnblogs.com/chenmfly/p/10113643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!