每月填补日期间隔

时间:2019-03-20 08:20:26

标签: sql sql-server

我有产品表及其在几个月内的销售量。

Product Month      Qty
A       2018-01-01 5
A       2018-02-01 3
A       2018-05-01 5
B       2018-08-01 10
B       2018-10-01 12
...

我想先填写每个产品的最小和最大日期之间的数据间隙,如下所示:

Product Month      Qty
A       2018-01-01 5
A       2018-02-01 3
A       2018-03-01 0
A       2018-04-01 0
A       2018-05-01 5
B       2018-08-01 10
B       2018-09-01 0
B       2018-10-01 12
...

然后,我需要按月对每种产品的销售量进行累计。

Product Month      total_Qty
A       2018-01-01 5
A       2018-02-01 8
A       2018-03-01 8
A       2018-04-01 8
A       2018-05-01 13
B       2018-08-01 10
B       2018-09-01 10
B       2018-10-01 22
...

我迷惑了“ cross join”子句,但是它似乎为我带来了一些意想不到的结果。有人可以帮忙提示一下如何在SQL中实现此目标吗?

非常感谢。

5 个答案:

答案 0 :(得分:2)

我认为递归CTE是执行此操作的简单方法。代码就是:

with cte as (
      select product, min(mon) as mon, max(mon) as end_mon
      from t
      group by product
      union all
      select product, dateadd(month, 1, mon), end_mon
      from cte
      where mon < end_mon
     )
select cte.product, cte.mon, coalesce(qty, 0) as qty
from cte left join
     t
     on t.product = cte.product and t.mon = cte.mon;

Here是db <>小提琴。

答案 1 :(得分:0)

嗨,我认为这个示例可以为您提供帮助,并完成您所例外的事情:

  CREATE TABLE #MyTable  
(Product   varchar(10),  
   ProductMonth      DATETIME,
   Qty      int
  );  
GO  

CREATE TABLE #MyTableTempDate  
(
   FullMonth      DATETIME
  );  
GO  


INSERT INTO #MyTable 
SELECT 'A', '2019-01-01',  214
UNION
SELECT 'A', '2019-02-01',  4
UNION 
SELECT 'A', '2019-03-01',  50
UNION
SELECT 'B', '2019-01-01',  214
UNION
SELECT 'B', '2019-02-01',  10
UNION 
SELECT 'C', '2019-04-01', 150


INSERT INTO #MyTableTempDate
SELECT '2019-01-01'
UNION
SELECT '2019-02-01'
UNION
SELECT '2019-03-01'
UNION
SELECT '2019-04-01'
UNION
SELECT '2019-05-01'
UNION
SELECT '2019-06-01'
UNION
SELECT '2019-07-01';

------------- FOR NEWER SQL SERVER VERSION  > 2005

WITH MyCTE AS 
(
    SELECT T.Product, T.ProductMonth AS 'MMonth', T.Qty
    FROM #MyTable T
    UNION
    SELECT T.Product, TD.FullMonth AS 'MMonth', 0 AS 'Qty'
    FROM #MyTable T, #MyTableTempDate TD
    WHERE NOT EXISTS (SELECT 1 FROM #MyTable TT WHERE TT.Product = T.Product AND TD.FullMonth = TT.ProductMonth)
)
-- SELECT * FROM MyCTE;
SELECT Product, MMonth, Qty, SUM( Qty) OVER(PARTITION BY Product ORDER BY  Product 
     ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) as 'TotalQty'
FROM MyCTE
ORDER BY Product, MMonth ASC;


DROP TABLE  #MyTable


DROP TABLE  #MyTableTempDate

我还有其他方法可以在较低的SQL Server版本(例如2005及更低版本)中执行此操作 如果您遇到这种情况,请在SELECT上进行SELECT,并提供其他示例。

答案 2 :(得分:0)

首先,我将划分月份和年份以简化统计工作。

我将为您提供示例查询,该查询并非基于您的表,但仍然有帮助。


--here i create the table that will be used as calendar
Create Table MA_MonthYears (
Month int  not null ,
year int  not null 
PRIMARY KEY ( month, year) )

--/////////////////


-- here i'm creating a procedure to fill the ma_monthyears table
declare @month as int 
declare @year as int
set @month = 1
set @year = 2015

while ( @year != 2099  )
begin

insert into MA_MonthYears(Month, year)
select @month, @year

if @month < 12 
set @month=@month+1
else
set @month=1

if @month = 1 
set @year = @year + 1 

end

--/////////////////


--here you are the possible result you are looking for
select SUM(Ma_saledocdetail.taxableamount) as Sold, MA_MonthYears.month , MA_MonthYears.year , item
from MA_MonthYears left outer join MA_SaleDocDetail on year(MA_SaleDocDetail.DocumentDate) = MA_MonthYears.year 
and Month(ma_saledocdetail.documentdate) = MA_MonthYears.Month
group by MA_SaleDocDetail.Item, MA_MonthYears.year , MA_MonthYears.month
order by  MA_MonthYears.year , MA_MonthYears.month

答案 3 :(得分:0)

您可以使用递归CTE创建月份

DECLARE @MyTable TABLE   
(  
    ProductID  CHAR(1),  
    Date      DATE,
    Amount      INT
) 

INSERT INTO @MyTable 
VALUES 
('A','2018-01-01', 5),
('A','2018-02-01', 3),
('A','2018-05-01', 5),
('B','2018-08-01', 10),
('B','2018-10-01', 12)

DECLARE @StartDate DATE 
DECLARE @EndDate DATE

SELECT @StartDate = MIN(Date), @EndDate = MAX(Date) FROM @MyTable

;WITH dates AS (
    SELECT @StartDate AS Date
    UNION ALL
    SELECT DATEADD(Month, 1, Date)
    FROM dates 
    WHERE Date < @EndDate   
)
SELECT A.ProductID, d.Date, COALESCE(Amount,0) AS Amount, COALESCE(SUM(Amount) OVER(PARTITION BY A.ProductID ORDER BY  A.ProductID, d.Date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW),0) AS Total
FROM 
(
    SELECT ProductID, MIN(date) as DateStart, MAX(date) as DateEnd 
    FROM @MyTable
    GROUP BY ProductID -- As I read in your comments that you need different min and max dates per product
) A 
JOIN dates d ON d.Date >= A.DateStart AND d.Date <= A.DateEnd
LEFT JOIN @MyTable T ON A.ProductID = T.ProductID AND T.Date =  d.Date
ORDER BY A.ProductID, d.Date

答案 4 :(得分:0)

在下面尝试一下

IF OBJECT_ID('tempdb..#Temp')  IS NOT NULL
DROP TABLE #Temp
;WITH CTE(Product,[Month],Qty)
AS
(
SELECT 'A','2018-01-01', 5  UNION ALL
SELECT 'A','2018-02-01', 3  UNION ALL
SELECT 'A','2018-05-01', 5  UNION ALL
SELECT 'B','2018-08-01', 10 UNION ALL
SELECT 'D','2018-10-01', 12
)
SELECT ct.Product,[MonthDays],ct.Qty 
INTO #Temp
FROM
(
SELECT c.Product,[Month],
       ISNULL(Qty,0) AS Qty 
FROM CTE c
)ct
RIGHT JOIN
(
 SELECT -- This code is to get month data
    CONVERT(VARCHAR(10),'2018-'+ RIGHT('00'+CAST(MONTH(DATEADD(MM, s.number, CONVERT(DATETIME, 0)))AS VARCHAR),2) +'-01',120) AS [MonthDays]         
 FROM master.dbo.spt_values s 
 WHERE [type] = 'P' AND s.number BETWEEN 0 AND 11
)DT
ON dt.[MonthDays] = ct.[Month]


SELECT   
        MAX(Product)OVER(ORDER BY [MonthDays])AS Product,
        [MonthDays],        
        ISNULL(Qty,0) Qty,
        SUM(ISNULL(Qty,0))OVER(ORDER BY [MonthDays]) As SumQty
FROM #Temp

结果

Product MonthDays   Qty SumQty
------------------------------
A       2018-01-01  5   5
A       2018-02-01  3   8
A       2018-03-01  0   8
A       2018-04-01  0   8
A       2018-05-01  5   13
A       2018-06-01  0   13
A       2018-07-01  0   13
B       2018-08-01  10  23
B       2018-09-01  0   23
D       2018-10-01  12  35
D       2018-11-01  0   35
D       2018-12-01  0   35