PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Jak określić największą rozdzielczość PRZEDZIAŁU?

Pytanie nie jest w 100% jasne, więc odpowiedź może, ale nie musi być dokładnie tym, czego szukasz, ale...

Istnieje justify_interval() funkcja, którą warto zajrzeć.

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)

Wyodrębnij tam rok, miesiąc, dzień itd., aż uzyskasz niezerową odpowiedź:

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

Odpowiedz na inne pytanie w komentarzach:

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;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Rails:FATAL - Uwierzytelnienie peera nie powiodło się dla użytkownika (PG::Error)

  2. 5 sposobów na sprawdzenie, czy tabela istnieje w PostgreSQL

  3. FULL OUTER JOIN do łączenia tabel z PostgreSQL

  4. Instalacja PostgreSQL 9.1 i kodowanie bazy danych

  5. rekurencyjne zapytanie postgres na tej samej tabeli