Re: Interval Question - Mailing list pgsql-general

From Stephan Szabo
Subject Re: Interval Question
Date
Msg-id 20050111071406.V74996@megazone.bigpanda.com
Whole thread Raw
In response to Interval Question  (Terry Lee Tucker <terry@esc1.com>)
List pgsql-general
On Tue, 11 Jan 2005, Terry Lee Tucker wrote:

> As you can see, this truck is going to be 2 hours late. The return value I'm
> looking for is the difference between Appt. Interval and Travel Interval, as
> in: return (appt_interval - travel_interval).  This value will be stored in a
> column of type interval. I would like for late values to be shown as
> negative. @ -2 hours.  I thought that subtracting the larger interval from
> the small would return this but it is always the absolute value. The
> documentation states:
>
> interval values can be written with the following syntax:
>
> [@] quantity unit [quantity unit...] [direction]
>
>  Where: quantity is a number (possibly signed);
>
> Considering the above statement I believed that I could show this difference
> as a negative value but I haven't been able to figure out how to do it. Can I
> do this, and if so, how?

Well, when I try this with constant values on my 7.4 or 8.0 dev system I
get:

select '3 days 4 hours 17 mins'::interval - '3 days 6 hours 17
mins'::interval;
 ?column?
-----------
 -02:00:00
(1 row)

Can you give a full example?


pgsql-general by date:

Previous
From: Timothy Perrigo
Date:
Subject: Re: Interval Question
Next
From: Tom Lane
Date:
Subject: Re: Interval Question