1

我有一张看起来像这样的小桌子:

PLAN    YRMTH
A2BKG   197001
A2BKG   200205
A2BKG   200308
A2BKG   200806

从这张表中,我如何获得如下表?

   PLAN STARTDATE   ENDDATE
    A2BKG   197001      200205
    A2BKG   200205      200308
    A2BKG   200308      200806
    A2BKG   200806      NULL 
4

5 回答 5

2

尝试这个

;with cte as 
(select *, ROW_NUMBER() over (partition by [plan] order by yrmth) rn from yourtable)
    select 
        t1.[plan],
        t1.YRMTH as startdate,
        t2.YRMTH as enddate
    from cte t1
        left join cte t2 on t1.[plan]=t2.[plan]
            and t1.rn=t2.rn-1
于 2012-11-27T09:05:26.940 回答
1

这就是我在 oracle 中尝试过的,在 sql-server 2012 中也可以使用相同的方法......我的坏:(

select plan,yrmth,lead(yrmth) over (partition by lower(plan) order by rowid)  from tbl;
于 2012-11-27T09:09:11.590 回答
0

这样的事情可能会有所帮助:

SELECT  
[PLAN], 
YRMTH AS STARTDATE,
(SELECT MIN(YRMTH) FROM yourTable T 
WHERE T.[Plan] = yourTable.[Plan] AND T.YRMTH > Test1.YRMTH) AS  ENDDATE
FROM yourTable
于 2012-11-27T09:05:56.017 回答
0
select t1.PLAN, t2.STARTDATE, 
 (select top 1 STARTDATE from table t2 where  t1.PLAN =t2.PLAN
                  and t1.STARTDATE<t2.STARTDATE) as ENDDATE
from table t1 
于 2012-11-27T09:10:15.817 回答
0

我的临时表解决方案。

-- Create a temp table, containing an extra column, ID
DECLARE @orderedPlans 
(
   ID int,
   Plan varchar(64),
   YrMth int
)

-- Use contents of your table, plus ROW_NUMBER, to populate
-- temp table.  ID is sorted on Plan and YrMth.
--
INSERT INTO 
  @orderedPlans
(
   ID,
   Plan,
   YrMth
)
SELECT ROW_NUMBER() OVER (ORDER BY Plan, YrMth) AS ID,
  Plan,
  YrMth
FROM 
  YourTable

-- Now join your temp table on itself
-- Because of the ROW_NUMBER(), we can use ID - 1 as a join
-- Also join on Plan, so that the query can handle multiple plans being
-- in the table
SELECT 
    p1.Plan,
    p1.YrMth AS StartDate,
    p2.YrMth AS EndDate
FROM
  @orderedPlans p1
LEFT JOIN
  @orderedPlans p2
ON
    p1.Plan = p2.Plan
AND p1.ID = p2.ID - 1
于 2012-11-27T09:11:56.207 回答