By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
WITH t AS
(
SELECT
*
FROM
(VALUES ('2021-10-09 23:58:34.000', '2021-10-10 00:00:00.000', 'task_completed', '00001'),
('2021-10-10 00:00:01.000', '2021-10-10 00:00:05.000', 'task_completed', '00001'),
('2021-10-10 00:00:06.000', '2021-10-10 00:00:25.000', 'task_completed', '00001'),
('2021-10-10 00:00:26.000', '2021-10-10 00:00:45.000', 'task_not_completed', '00001'),
('2021-10-10 00:00:46.000', '2021-10-10 00:01:00.000', 'task_not_completed', '00001'),
('2021-10-10 00:01:01.000', '2021-10-10 00:01:10.000', 'task_completed', '00001'),
('2021-10-10 00:01:11.000', '2021-10-10 00:01:15.000', 'task_completed', '00001')) AS t(start_time, end_time, task_state, person_id)
ORDER BY
1
)
SELECT person_id, task_state, MIN(start_time) start_time, MAX(end_time) end_time
from (
SELECT *
, ROW_NUMBER() OVER (PARTITION BY t.person_id ORDER BY start_time)
- ROW_NUMBER() OVER (PARTITION BY t.person_id, t.task_state ORDER BY start_time) AS taskgroups
FROM t) tt
GROUP BY taskgroups , person_id,task_state
person_id | task_state | start_time | end_time |
---|---|---|---|
00001 | task_completed | 2021-10-10 00:01:01.000 | 2021-10-10 00:01:15.000 |
00001 | task_not_completed | 2021-10-10 00:00:26.000 | 2021-10-10 00:01:00.000 |
00001 | task_completed | 2021-10-09 23:58:34.000 | 2021-10-10 00:00:25.000 |