Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numbering islands in SQL Server 2012

I need to number islands in SQL Server 2012. Island is defined as a set of rows where there is no day gaps between DateFrom and DateTo within the same ItemId).

The following dataset:

CREATE TABLE #Ranges (ItemId INT, DateFrom DATETIME, DateTo DATETIME)

INSERT INTO #Ranges VALUES (1,'2015-01-31','2015-02-17')
INSERT INTO #Ranges VALUES (1,'2015-02-18','2015-03-31')
INSERT INTO #Ranges VALUES (1,'2015-04-14','2015-05-21')
INSERT INTO #Ranges VALUES (2,'2015-07-12','2015-07-19')
INSERT INTO #Ranges VALUES (2,'2015-07-20','2015-07-24')
INSERT INTO #Ranges VALUES (2,'2015-07-26','2015-08-02')
INSERT INTO #Ranges VALUES (2,'2015-08-03','2015-08-07')

should be numbered as following:

ItemId;  DateFrom;    DateTo;      Number
1;       2015-01-31;  2015-02-17;  1
1;       2015-02-18;  2015-03-31;  1
1;       2015-04-14;  2015-05-21;  2
2;       2015-07-12;  2015-07-19;  3
2;       2015-07-20;  2015-07-24;  3
2;       2015-07-26;  2015-08-02;  4
2;       2015-08-03;  2015-08-07;  4

Any help much appreciated.

Regards, Przemek

like image 577
Przemek Avatar asked Feb 09 '23 23:02

Przemek


2 Answers

If you want to just number them, then I would suggest lag() with a cumulative sum:

select t.*,
       sum(case when datefrom = dateadd(day, 1, prev_dateto
                then 0 else 1
           end) over (order by itemId, datefrom)
from (select t.*,
             lag(dateto) over (partition by itemid order by datefrom) as prev_dateto
      from table t
     ) t;

The case determines where a new island begins. The cumulative sum just sums this flag.

like image 63
Gordon Linoff Avatar answered Feb 11 '23 23:02

Gordon Linoff


You can use LAG and DENSE_RANK:

SqlFiddleDemo

WITH cte AS
(   SELECT 
       *
       ,LAG(DateFrom) OVER (ORDER BY DateFrom) AS PrevDateFrom 
       ,LAG(DateTo) OVER (ORDER BY DateFrom) AS PrevDateTo    
    FROM Ranges
)
SELECT ItemId, DateFrom, DateTo,
   DENSE_RANK() OVER(ORDER BY CASE WHEN DateFrom = PrevDateTo + 1 THEN PrevDateFrom ELSE DateFrom END) AS Number
FROM cte
like image 33
Lukasz Szozda Avatar answered Feb 11 '23 21:02

Lukasz Szozda