PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Funktionsweise von justify_interval() in PostgreSQL

In PostgreSQL das justify_interval() -Funktion passt ein Intervall mit justify_days an und justify_hours . Es ermöglicht Ihnen, zusätzliche Vorzeichenanpassungen zu verwenden, um das Intervall anzupassen.

Syntax

Die Funktion hat folgende Syntax:

justify_interval(interval)

Wobei interval ist das Intervall, das Sie anpassen möchten.

Beispiel

Hier ist ein einfaches Beispiel zur Veranschaulichung.

SELECT justify_interval(interval '1 mon -3 hours');

Ergebnis:

29 days 21:00:00

Vergleich mit justify_hours() und justify_days()

So ist es im Vergleich zu justify_hours() und justify_days() wenn dasselbe Argument verwendet wird.

\x
SELECT 
  justify_interval(interval '1 mon -3 hours'),
  justify_hours(interval '1 mon -3 hours'),
  justify_days(interval '1 mon -3 hours');

Ergebnis (bei vertikaler Ausgabe):

justify_interval | 29 days 21:00:00
justify_hours    | 1 mon -03:00:00
justify_days     | 1 mon -03:00:00

In diesem Beispiel habe ich \x verwendet um zur erweiterten Anzeige umzuschalten, die die Ergebnisse mit vertikaler Ausgabe anzeigt.

Unten sind einige weitere Vergleiche mit verschiedenen Argumenten.

justify_interval()

SELECT 
  justify_interval(interval '30 hours'),
  justify_interval(interval '300 hours'),
  justify_interval(interval '3000 hours'),
  justify_interval(interval '3.53 months'),
  justify_interval(interval '18 days'),
  justify_interval(interval '31 days'),
  justify_interval(interval '45 days'),
  justify_interval(interval '290 days');

Ergebnis (bei vertikaler Ausgabe):

justify_interval | 1 day 06:00:00
justify_interval | 12 days 12:00:00
justify_interval | 4 mons 5 days
justify_interval | 3 mons 15 days 21:36:00
justify_interval | 18 days
justify_interval | 1 mon 1 day
justify_interval | 1 mon 15 days
justify_interval | 9 mons 20 days

justify_hours()

SELECT 
  justify_hours(interval '30 hours'),
  justify_hours(interval '300 hours'),
  justify_hours(interval '3000 hours'),
  justify_hours(interval '3.53 months'),
  justify_hours(interval '18 days'),
  justify_hours(interval '31 days'),
  justify_hours(interval '45 days'),
  justify_hours(interval '290 days');

Ergebnis (bei vertikaler Ausgabe):

justify_hours | 1 day 06:00:00
justify_hours | 12 days 12:00:00
justify_hours | 125 days
justify_hours | 3 mons 15 days 21:36:00
justify_hours | 18 days
justify_hours | 31 days
justify_hours | 45 days
justify_hours | 290 days

justify_days()

SELECT 
  justify_days(interval '30 hours'),
  justify_days(interval '300 hours'),
  justify_days(interval '3000 hours'),
  justify_days(interval '3.53 months'),
  justify_days(interval '18 days'),
  justify_days(interval '31 days'),
  justify_days(interval '45 days'),
  justify_days(interval '290 days');

Ergebnis (bei vertikaler Ausgabe):

justify_days | 30:00:00
justify_days | 300:00:00
justify_days | 3000:00:00
justify_days | 3 mons 15 days 21:36:00
justify_days | 18 days
justify_days | 1 mon 1 day
justify_days | 1 mon 15 days
justify_days | 9 mons 20 days