SQL语句统计每天、每月、每年的销售总额
SQL语句统计每天、每月、每年的销售总额表订单里有字段Ordertimedatetime(订单时间),TotalDecimal(10,2)(订单总额)现在要根据订单里的时...
SQL语句统计每天、每月、每年的销售总额 表 订单 里有字段 Ordertime datetime(订单时间),Total Decimal(10,2)(订单总额) 现在要根据订单里的时间来统计每天、每月、每年的销售总额 要求:一般人能看懂的sql语句,别要有存储过程啊,游标之类的。。
展开
1个回答
展开全部
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
即可。
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
即可。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询