Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Oracle PLSQL skraca daty i godziny do 15-minutowych bloków

Dzięki temu dostaniesz się do najbliższego kwartału.

select sysdate,
       trunc(sysdate,'mi') -                           --truncate to the nearest minute
       numtodsinterval(                                --convert the minutes in number to interval type and subtract.
                       mod(to_char(sysdate,'mi'),15),  --find the minutes from the nearest quarter
                      'minute'                          
                      ) as nearest_quarter
  from dual;

Wyjście:

sysdate                             nearest_quarter
-----------------------------------------------------------------
October, 11 2013 05:54:24+0000      October, 11 2013 05:45:00+0000
October, 11 2013 05:22:24+0000      October, 11 2013 05:15:00+0000

Użyj tego jako wartości początkowej, a następnie przeprowadź iterację.

with cte as(
  select trunc(sysdate,'mi') - 
         numtodsinterval(mod(to_char(sysdate,'mi'),15),'minute') as nearest_quarter
  from dual
  )
select nearest_quarter - numtodsinterval((level - 1)*15, 'minute'),
       nearest_quarter - numtodsinterval((level - 2)*15, 'minute')
from cte
connect by level <= 10;

Demo .



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Zapytanie o grupę/liczbę Oracle

  2. zaktualizuj zestaw z wewnętrznego zapytania sprzężenia, rzucając błąd

  3. Jak automatycznie zwiększyć identyfikator w złożonym kluczu podstawowym w Hibernate?

  4. Zwróć tabelę w funkcji PL/SQL

  5. Sql Sortuj według w wielu kolumnach