By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
create table #t (id int, event_time_text nvarchar(6), event_time time);
insert into #t (id,event_time_text) values
(123456789,'070007'),
(123456789,'070048'),
(123456789,'162455'),
(123456789,'162542'),
(123456789,'184131'),
(123456789,'184207');
update #t set event_time = TIMEFROMPARTS(LEFT(event_time_text,2),SUBSTRING(event_time_text,3,2),SUBSTRING(event_time_text,5,2),0,0);
WITH dat --calculate the difference in minutes of one row from the previous row
AS
(
SELECT *
,CASE
WHEN DATEDIFF(minute,LAG(event_time,1,event_time) OVER (PARTITION BY id ORDER BY event_time),event_time) <= 2
THEN LAG(event_time,1,event_time) OVER (PARTITION BY id ORDER BY event_time)
ELSE event_time
END AS diff_index
FROM #t
)
SELECT *
,DENSE_RANK() OVER (PARTITION BY id ORDER BY diff_index) AS group_within_id
FROM dat;
id | event_time_text | event_time | diff_index | group_within_id |
---|---|---|---|---|
123456789 | 070007 | 07:00:07.0000000 | 07:00:07.0000000 | 1 |
123456789 | 070048 | 07:00:48.0000000 | 07:00:07.0000000 | 1 |
123456789 | 162455 | 16:24:55.0000000 | 16:24:55.0000000 | 2 |
123456789 | 162542 | 16:25:42.0000000 | 16:24:55.0000000 | 2 |
123456789 | 184131 | 18:41:31.0000000 | 18:41:31.0000000 | 3 |
123456789 | 184207 | 18:42:07.0000000 | 18:41:31.0000000 | 3 |