Re: Time handling in pgsql. (fwd)

From: "Jeff MacDonald" <jeff(at)interchange(dot)ca>
To: <nolan(at)celery(dot)tssi(dot)com>, "pgsql general list" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Time handling in pgsql. (fwd)
Date: 2003-04-22 17:26:58
Message-ID: FJENKCLABGGBKBDGHOJJGEPGCAAA.jeff@interchange.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Ok, I found what I wanted.

You can use extract epoch on intervals.

SELECT sum(EXTRACT(EPOCH FROM age(endtime,starttime))) FROM tracking GROUP
BY uwid;

The query above works.

>> -----Original Message-----
>> From: pgsql-general-owner(at)postgresql(dot)org
>> [mailto:pgsql-general-owner(at)postgresql(dot)org]On Behalf Of Jeff MacDonald
>> Sent: Tuesday, April 22, 2003 1:20 PM
>> To: nolan(at)celery(dot)tssi(dot)com; pgsql general list
>> Subject: Re: [GENERAL] Time handling in pgsql. (fwd)
>>
>>
>> Actually I'd be happy if i could simply do this
>>
>> SELECT age(start,end)::seconds From foo;
>>
>> or something very close to that. Then i could process
>> the rest in perl.
>>
>> Jeff.
>>
>> >> From: pgsql-general-owner(at)postgresql(dot)org
>> >> [mailto:pgsql-general-owner(at)postgresql(dot)org]On Behalf Of
>> >> nolan(at)celery(dot)tssi(dot)com
>> >> Subject: [GENERAL] Time handling in pgsql. (fwd)
>>
>> >> It would be great if the 'age' function could be supplied a formatting
>> >> string so that you could format the data any way you want.
>>
>> >> Within that function convert both timestamps into seconds, do
>> >> the arithmetic and return the number of seconds.
>> >>
>>
>>
>> ---------------------------(end of broadcast)---------------------------
>> TIP 5: Have you checked our extensive FAQ?
>>
>> http://www.postgresql.org/docs/faqs/FAQ.html
>>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Sean Chittenden 2003-04-22 17:31:22 Re: > 16TB worth of data question
Previous Message Dennis Gearon 2003-04-22 17:25:57 Re: > 16TB worth of data question