SQL按时间统计客户的月销售量和年销售量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL按时间统计客户的月销售量和年销售量相关的知识,希望对你有一定的参考价值。

我们单位要做一个销售表,以方便每月来进行报表统计工作。数据库是SQL2000的,因为之前有一套已经在用的数据库系统,里面存储了2年的销售数据,现在领导需要改动报表最终的显示结构。它有2个表的数据组成数据库表①结构如下:表名:基本数据字段:销售日期 单位名称 型号 类型 数量 单价 金额 业务员 部门 运输方式数据库表②结构如下:
表名:用户回款 字段:销售日期 客户名称 回款金额 业务员 部门注意:表①中的单位名称与表②中的客户名称是相同的。都是客户的名称。表②中的销售日期应该是回款的日期,与表①的销售日期不一样。领导要求查询上月的26号到本月的25号这一个月期间每个客户的本月销售量、以及本月销售金额,本月回款金额,本年累计销售量(比如2009年1月1日-2009年12月31日一个客户的累计销量),本年累计销售金额,本年累计回款额,总销量(比如这个客户从若干年前一直到现在的总销量),总销售金额,总回款额,年度总销量(就是2009年一年所有客户的总销量加在一起),年度总销售额,年度总回款 就是这样的一个要求!!出来的报表如下:

select a.单位名称,a.本月销量,a.本月销售金额,b.本月回款金额,c.本年累计销售量,c.本年累计销售金额,d.本年累计回款金额,
e.总销量,e.总销售金额,f.总回款金额,g.年度总销量,g.年度总销售金额,h.年度总回款金额 from
(select 1 as 编号,单位名称,sum(数量) as 本月销量,sum(金额) as 本月销售金额 from 基本数据 where 销售日期 between '2009-07-26' and '2009-08-25' group by 单位名称) a
inner join
(select 客户名称,sum(回款金额) as 本月回款金额 from 用户回款 where 销售日期 between '2009-07-26' and '2009-08-25' group by 客户名称) b on a.单位名称=b.客户名称
inner join
(select 单位名称,sum(数量) as 本年累计销售量,sum(金额) as 本年累计销售金额 from 基本数据 where 销售日期 between '2009-01-01' and '2009-12-31' group by 单位名称) c on a.单位名称=c.单位名称
inner join
(select 客户名称,sum(回款金额) as 本年累计回款金额 from 用户回款 where 销售日期 between '2009-01-01' and '2009-12-31' group by 客户名称) d on a.单位名称=d.客户名称
inner join
(select 单位名称,sum(数量) as 总销量,sum(金额) as 总销售金额 from 基本数据) e on a.单位名称=e.单位名称
inner join
(select 客户名称,sum(回款金额) as 总回款金额 from 用户回款) f on a.单位名称=f.客户名称
inner join
(select 1 as 编号,sum(数量) as 年度总销量,sum(金额) as 年度总销售金额 from 基本数据 where 销售日期 between '2009-01-01' and '2009-12-31') g on a.编号=g.编号
inner join
(select 1 as 编号,sum(回款金额) as 年度总回款金额 from 用户回款 where 销售日期 between '2009-01-01' and '2009-12-31') h on a.编号=h.编号
参考技术A 发个表脚本上来,省得我去建表了,就是 create tabel的那个

SQL按客户分组的最近15个月销售额

我想在sql中输出一个包含每个客户每月销售额的表。每列应对应另一个月。

第一列应该是当前月份示例我的sql列是:

  • 顾客
  • 发票日期
  • 销售

原始表看起来像这样:

+------------+------------+---------+
|  Customer  |  invdate   | sales   |
+------------+------------+---------+
| Best Buy   | 03-12-2019 |   433   |
| Walmart    | 03-15-2019 |   543   |
| Home Depot | 12-12-2018 |      32 |
+------------+------------+---------+

期望的输出:

+------------+----------+--------+--------+--------+--------+----------+
|  Customer  | March 19 | Feb 19 | Jan 19 | Dec 18 | Nov 18 | Oct 18   |
+------------+----------+--------+--------+--------+--------+----------+
| Home Depot |      100 |    300 |    244 |     32 |    322 |     43   |
| Walmart    |      543 |    222 |    234 |     12 |    234 |     34   |
| Bestbuy    |      433 |    323 |    323 |     23 |    433 |     34   |
+------------+----------+--------+--------+--------+--------+----------+
答案

你可以使用group by,sum和case来达到良好的效果,如下所示:

select
  customer,
  sum(case when year(invdate) = year(getdate) and month(invdate) = month(getdate())   then sales else o end),
  sum(case when year(invdate) = year(dateadd(m,1,getdate))
           and month(invdate) = month(dateadd(m,1,getdate())) then sales else o end),
  sum(case when year(invdate) = year(dateadd(m,2,getdate))
           and month(invdate) = month(dateadd(m,2,getdate())) then sales else o end),
  sum(case when year(invdate) = year(dateadd(m,3,getdate))
           and month(invdate) = month(dateadd(m,3,getdate())) then sales else o end),
  sum(case when year(invdate) = year(dateadd(m,4,getdate))
           and month(invdate) = month(dateadd(m,4,getdate())) then sales else o end),
  sum(case when year(invdate) = year(dateadd(m,5,getdate))
           and month(invdate) = month(dateadd(m,5,getdate())) then sales else o end)
from tableyoudidnotgivethenameof
group by customer

以上是关于SQL按时间统计客户的月销售量和年销售量的主要内容,如果未能解决你的问题,请参考以下文章

SQL 按客户分组的最近 15 个月的销售额

销售的单个商品按周统计

SQL按客户分组的最近15个月销售额

为我的 ERP 系统做销售统计,但性能很差

sql销售日结统计

在Excel中用啥样的公式可以实现,按照时间将销售员的客户接待情况用公式去重并进行分类统计?