Interval Question

From: Terry Lee Tucker <terry(at)esc1(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Interval Question
Date: 2005-01-11 14:34:53
Message-ID: 200501110934.53392.terry@esc1.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Greetings:

I am working on a function which returns an interval value. The work of the
function is to calculate the difference between the appointment timestamp and
and the current timestamp, represented as an interval, and the the time
required to travel from point A to B, represented as an interval.

Appoint time: 01/14/2004 15:30
Current time: 01/11/2004 10:43
Appt Interval: @ 3 days 4 hours 17 mins

Travel Time: 78 hours 17 minutes
Travel Interval: @ 3 days 6 hours 17 mins

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:

[(at)] 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?

Thanks...

Work: 1-336-372-6812
Cell: 1-336-363-4719
email: terry(at)esc1(dot)com

Responses

Browse pgsql-general by date

  From Date Subject
Next Message lol 2005-01-11 14:47:05 Re: PostgreSQL 8 on windows very slow
Previous Message Alex Turner 2005-01-11 14:14:51 Re: Simulating WAL on separate disks