Re: Trouble with UNIX TimeStamps - Mailing list pgsql-general

From Ben
Subject Re: Trouble with UNIX TimeStamps
Date
Msg-id 1041013949.13070.328.camel@purple
Whole thread Raw
In response to Trouble with UNIX TimeStamps  ("Jonathan Chum" <jchum@aismedia.com>)
List pgsql-general
On Fri, 2002-12-27 at 05:49, Jonathan Chum wrote:

> The table column, ticket_starters.ticket_time_start is an INT type which
> contains a UNIX timestamp. I did not see anywhere in the Interactive docs
> how'd I convert the UNIX timestamp into a timestamp type so I can extract
> the day name. I'd rather not use PostGreSQL's timestamp types and just
> convert the database over to it since much of the programming utilizes the
> UNIX timestamp.  Any ideas?

select 1041013653::int4::abstime;

will give you the timestamp from unixtime. If you just want the day, you
can use to_char like so:

select to_char(1041013653::int4::abstime,'dd');




pgsql-general by date:

Previous
From: Payal Rathod
Date:
Subject: Re: readline
Next
From: Tom Lane
Date:
Subject: Re: Trouble with UNIX TimeStamps