Chcesz zidentyfikować grupy sąsiednich wartości. Jedną z metod jest użycie lag()
aby znaleźć początek sekwencji, a następnie skumulowaną sumę w celu zidentyfikowania grup.
Inną metodą jest różnica w numerze wiersza:
select value, min(id) as from_id, max(id) as to_id
from (select t.*,
(row_number() over (order by id) -
row_number() over (partition by val order by id
) as grp
from table t
) t
group by grp, value;