Oracle
 sql >> Database >  >> RDS >> Oracle

Come creare GROUP BY nella data minima e massima

Questo è un tipo di problema di lacune e isole con le catene di date. Suggerirei di utilizzare un left join per trovare dove iniziano le isole. Quindi somma cumulativa e aggregazione:

select emp_id, title, min(start_date), max(end_date)
from (select t.*,
             sum(case when tprev.emp_id is null then 1 else 0 end) over
                 (partition by t.emp_id, t.title order by t.start_date) as grouping
      from t left join
           t tprev
           on t.emp_id = tprev.emp_id and
              t.title = tprev.title and
              t.start_date = tprev.end_date + 1
     ) t
group by grouping, emp_id, title;