PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come determinare la risoluzione massima di un INTERVAL?

La domanda non è chiara al 100%, quindi la risposta potrebbe essere o meno esattamente quella che stai cercando, ma...

Esiste un justify_interval() funzione, che potresti voler esaminare.

test=# select justify_interval(INTERVAL '100 days 3 seconds');
    justify_interval     
-------------------------
 3 mons 10 days 00:00:03
(1 row)

test=# select justify_interval(TIME '20:05' - TIME '12:01:01');
 justify_interval 
------------------
 08:03:59
(1 row)

test=# select justify_interval(AGE(NOW(), NOW() - INTERVAL '1 MONTH'));
 justify_interval 
------------------
 1 mon
(1 row)

Perché lì estrai l'anno, poi il mese, poi il giorno, ecc. finché non ottieni una risposta diversa da zero:

test=# select extract('mon' from interval '3 mons 10 days 00:00:03');
 date_part 
-----------
         3

Re la tua altra domanda nei commenti:

create function max_res(interval) returns interval as $$
select case
       when extract('year' from justify_interval($1)) > 0 or
            extract('mon' from justify_interval($1)) > 0 or
            extract('day' from justify_interval($1)) > 0
       then '1 day'
       when extract('hour' from justify_interval($1)) > 0
       then '1 hour'
       when ...
       end;
$$ language sql immutable strict;