From: | Alexey Klyukin <alexk(at)commandprompt(dot)com> |
---|---|
To: | Michael Glaesemann <grzm(at)seespotcode(dot)net> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Calculating the difference between timetz values |
Date: | 2009-07-27 16:28:16 |
Message-ID: | 24C7B5EB-3A03-4005-9C05-2573CB77335D@commandprompt.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Jul 27, 2009, at 6:52 PM, Michael Glaesemann wrote:
>
> On Jul 27, 2009, at 10:54 , Alexey Klyukin wrote:
>
>> Hello,
>>
>> I was looking for a way to get the difference (interval) between 2
>> timetz values, i.e.:
>
> I don't have a solution, but am curious what your use case is for
> timetz (as opposed to timestamptz).
I'm writing a custom trigger function that has to compare values of
time* types and make some actions depending on a result.
Answering my own question, Alvaro proposed a solution with
extract(epoch from tz_value), the result is in seconds:
postgres=# select extract(epoch from '00:00:00+0'::timetz) -
extract(epoch from '2:00:00+2'::timetz);
?column?
----------
0
(1 row)
--
Alexey Klyukin http://www.CommandPrompt.com
The PostgreSQL Company - Command Prompt, Inc.
From | Date | Subject | |
---|---|---|---|
Next Message | Bob Gobeille | 2009-07-27 16:32:55 | combining db's- importing primary keys |
Previous Message | John R Pierce | 2009-07-27 16:14:46 | Re: Run procedure at startup |