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

Hai bisogno di Oracle SQL per dividere l'intervallo di date/ora per giorno

È possibile farlo in SQL. Ci sono due trucchi. Il primo è generare una serie di numeri, che puoi fare con un CTE usando connect .

Il secondo è mettere insieme la logica giusta per ampliare le date, mantenendo i tempi giusti per l'inizio e la fine.

Quello che segue è un esempio:

with n as (
      select level n
      from dual connect by level <= 20
     ),
     t as (
      select 1 as id, to_date('01/01/2000 4', 'mm/dd/yyyy hh') as StartDate, to_date('01/03/2000 6', 'mm/dd/yyyy hh') as EndDate from dual union all
      select 2 as id, to_date('01/04/2000 8', 'mm/dd/yyyy hh') as StartDate, to_date('01/04/2000 12', 'mm/dd/yyyy hh') as EndDate from dual union all
      select 3 as id, to_date('01/05/2000', 'mm/dd/yyyy') as StartDate, to_date('01/06/2000', 'mm/dd/yyyy') as EndDate from dual
     )
select t.id,
       (case when n = 1 then StartDate
             else trunc(StartDate + n - 1)
        end) as StartDate,
       (case when trunc(StartDate + n - 1) = trunc(enddate)
             then enddate
             else trunc(StartDate + n)
        end)
from t join
     n
     on StartDate + n - 1 <= EndDate
order by id, StartDate

Eccolo su SQLFiddle.