How to group ranged values using SQL Server

前端 未结 2 1658
清酒与你
清酒与你 2021-01-16 09:10

I have a table of values like this

978412, 400
978813, 20
978834, 50
981001, 20

As you can see the second number when added to the first is

2条回答
  •  北海茫月
    2021-01-16 09:26

    Check out this MSDN Article. It gives you a solution to your problem, if it will work for you depends on the ammount of data you have and your performance requirements for the query.

    Edit:

    Well using the example in the query, and going with his last solution the second way to get islands (first way resulted in an error on SQL 2005).

    SELECT MIN(start) AS  startGroup, endGroup, (endgroup-min(start) +1) as NumNodes
    FROM (SELECT g1.gapID AS start,
    (SELECT min(g2.gapID) FROM #gaps g2 
    WHERE g2.gapID >= g1.gapID and NOT EXISTS
    (SELECT * FROM #gaps g3 
    WHERE g3.gapID - g2.gapID = 1)) as endGroup
    FROM #gaps g1) T1 GROUP BY endGroup
    

    The thing I added is (endgroup-min(start) +1) as NumNodes. This will give you the counts.

提交回复
热议问题