簡體   English   中英

使用SQL更改表

[英]altering a table using sql

我有這張桌子

**Original Table**          
year    month   duration    amount per month
2012    5       3           2000

我想得到這個

**Result table**            
year    month   duration    amount per month
2012    5       1           2000
2012    6       1           2000
2012    7       1           2000

請注意,一個項目(這是一個項目)的持續時間如何為3,“每月金額”為2000,所以我又添加了兩行以顯示接下來的幾個月(6和7)將具有“每月金額”也一樣 如何使用sql / tsql做到這一點?

試試這個SQL SERVER,我包括我的測試臨時表:

declare @temp as table
(
 [year] int
, [month] int
, [duration] int
, [amount] int
)
insert into @temp
( 
 [year] 
, [month] 
, [duration] 
, [amount]
)
VALUES(
 2012
,5
,3
,2000
)

SELECT
 [year] 
,[month] + n.number
,1
,[amount]
,   '1' + SUBSTRING(CAST([duration] AS varchar(10)), 2, 1000) AS Items
FROM @temp
JOIN master..spt_values n
    ON n.type = 'P'
    AND n.number < CONVERT(int, [duration])

請參見下面的腳本,它可能適合您的要求。 我還補償了日歷的年月增量。 請測試並讓我知道。

DECLARE @temp AS TABLE([Year] INT,[Month] INT,Duration INT,Amount INT)

INSERT INTO @temp([year], [month], Duration, Amount)
VALUES (2011, 5, 3, 2000),(2012, 11, 3, 3000),(2013, 9, 12, 1000);

;WITH cte_datefix
    AS (
    SELECT [Year],
         [Month],
         Duration,
         Amount,
         CAST(CAST([Year] AS VARCHAR(4)) + RIGHT('00' + CAST([Month] AS VARCHAR(2)), 2) + '01' AS DATE) AS [Date]
    FROM @temp
    ),
cte_Reslut
    AS (SELECT [Year],
            [Month],
            Duration,
            Amount,
            [Date],
            1 AS Months
       FROM cte_datefix
       UNION ALL
       SELECT t.[Year],
            t.[Month],
            t.Duration,
            t.Amount,
            DATEADD(M, Months, t.[Date]) AS [Date],
            cr.Months + 1 AS Months
       FROM cte_Reslut AS cr
           INNER JOIN cte_datefix AS t
           ON t.[Year] = cr.[Year]
       WHERE cr.Months < cr.Duration
    )
    SELECT YEAR([Date]) AS [Year],
         MONTH([Date]) AS [Month],
         1 AS Duration,
         Amount
    FROM cte_Reslut
    ORDER BY [Date]

對於那些想知道如何根據需要增加年份的人,這是一個基於Suing響應的示例(真的很簡單,只需包含兩個case語句):

select
 2012 as [year] 
,11 as [month]
,5 as [duration]
,2000 as [amount]
into #temp

select * from #temp

SELECT
 case 
    when [month] + n.number > 12 
        then [year] + 1 
        else [year]
    end as [year] 
,case 
    when [month] + n.number > 12 
        then [month] + n.number - 12 
        else [month] + n.number 
    end as newYear
,1 as newDuration
,[amount]
,   '1' + SUBSTRING(CAST([duration] AS varchar(10)), 2, 1000) AS Items
FROM #temp
JOIN master..spt_values n
    ON n.type = 'P'
    AND n.number < CONVERT(int, [duration])

drop table #temp

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM