From: | Terry Lee Tucker <terry(at)esc1(dot)com> |
---|---|
To: | Postgres General <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Interval Question |
Date: | 2005-01-11 15:35:37 |
Message-ID: | 200501111035.37580.terry@esc1.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Is is a "bare bones" copy of the function. The travel time is hard coded for
the example.
By the way, I'm on version 7.4.
On Tuesday 11 January 2005 10:10 am, Timothy Perrigo saith:
> Can you post the code for the function you are having trouble with?
> The following psql query works as expected (returns a negative
> interval):
>
> select '3 days 4 hours 17 mins'::interval - '3 days 6 hours 17
> mins'::interval;
> ?column?
> -----------
> -02:00:00
>
> Inserting the difference into a table with an interval column also
> seems to work:
>
> azrael=# create temp table interval_test(dif interval);
> CREATE TABLE
> azrael=# insert into interval_test select '3 days 4 hours 17
> mins'::interval - '3 days 6 hours 17 mins'::interval;
> INSERT 13615943 1
> azrael=# select * from interval_test;
> dif
> -----------
> -02:00:00
> (1 row)
>
> On Jan 11, 2005, at 8:34 AM, Terry Lee Tucker wrote:
> > 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
> >
> > ---------------------------(end of
> > broadcast)---------------------------
> > TIP 8: explain analyze is your friend
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: don't forget to increase your free space map settings
--
Quote: 0
"Our laws and our institutions must necessarily be based upon and
embody the teachings of the Redeemer of mankind. It is impossible
that it should be otherwise; and in this sense and to this extent
our civilization and our institutions are emphatically
Christian... This is a religious people. This is historically
true. From the discovery of this continent to the present hour,
there is a single voice making this affirmation... we find
everywhere a clear recognition of the same truth... These, and many
other matters which might be noticed, add a volume of unofficial
declarations to the mass of organic utterances that this is a
Christian nation."
-- Supreme Court Decision, 1892 (Church of the Holy Trinity V. US)
Work: 1-336-372-6812
Cell: 1-336-363-4719
email: terry(at)esc1(dot)com
Attachment | Content-Type | Size |
---|---|---|
on_time_func.plsql | text/plain | 662 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Childs | 2005-01-11 15:40:07 | problems with 8.0 Rc4 |
Previous Message | Tom Lane | 2005-01-11 15:19:01 | Re: Interval Question |