Re: DATE_PART('field', INTERVAL) not intuitive literal reading of interval

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: vodevsh(at)gmail(dot)com, pgsql-docs(at)lists(dot)postgresql(dot)org
Subject: Re: DATE_PART('field', INTERVAL) not intuitive literal reading of interval
Date: 2018-06-20 12:12:17
Message-ID: 20180620121217.GA7038@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

On Tue, Jun 19, 2018 at 11:58:39PM -0400, Bruce Momjian wrote:
> On Tue, May 22, 2018 at 10:55:14AM +0000, PG Doc comments form wrote:
> > https://stackoverflow.com/questions/50465632/postgresql-10-4-date-difference/50465676#50465676
>
> This is really a function of how interval computes months, days, and
> seconds from subtraction, which is outlined here:
>
> https://www.postgresql.org/docs/10/static/datatype-datetime.html#DATATYPE-INTERVAL-INPUT
>
> I don't think adding something to the functions-datetime.html section
> makes sense. For example, this returns 1:
>
> SELECT extract(minutes from '1 hour 1 minute'::interval);
> date_part
> -----------
> 1

Thinking some more, I wonder if this behavior should be more clearly
documented:

SELECT EXTRACT(hours from '80 minutes'::interval);
date_part
-----------
1

SELECT EXTRACT(days from '80 hours'::interval);
date_part
-----------
0

To me, this clearly shows the behavior of the months, days, and seconds
components. I have developed the attached doc patch to mention this.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ As you are, so once was I. As I am, so you will be. +
+ Ancient Roman grave inscription +

Attachment Content-Type Size
interval.diff text/x-diff 2.4 KB

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Vladimir Svedov 2018-06-20 12:42:54 Re: DATE_PART('field', INTERVAL) not intuitive literal reading of interval
Previous Message Bruce Momjian 2018-06-20 03:58:39 Re: DATE_PART('field', INTERVAL) not intuitive literal reading of interval