SQL Server get count row interval next 5 seconds for every row with same criteria

57 Views Asked by At

i have an example data :

enter image description here

I need to get the count of SNs for the next 5 seconds where the SNs are of the same type and the same selection

enter image description here

I tried using join but didn't quite get to the point. Is there a way to get this.

1

There are 1 best solutions below

0
On
select *
from TestData t1
cross apply
(
  select
    count(*) [Count],
    isnull(string_agg(t2.SN, ','), '-') [Related SN]
  from TestData t2
  where
    t2.SN <> t1.SN
    and t2.Type = t1.Type
    and t2.Selection = t1.Selection
    and t2.DT >= t1.DT
    and datediff(second, t1.DT, t2.DT) < 5
) RelatedSN;