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

From Bruno Wolff III
Subject Re: Trouble with UNIX TimeStamps
Date
Msg-id 20021227143807.GB3274@wolff.to
Whole thread Raw
In response to Trouble with UNIX TimeStamps  ("Jonathan Chum" <jchum@aismedia.com>)
Responses Re: Trouble with UNIX TimeStamps  ("Jonathan Chum" <jchum@aismedia.com>)
List pgsql-general
On Fri, Dec 27, 2002 at 08:49:58 -0500,
  Jonathan Chum <jchum@aismedia.com> 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?

One way to do this is:
area=> select to_char('epoch'::timestamp + (1040999196 || ' seconds')::interval,'Day');
  to_char
-----------
 Friday
(1 row)

pgsql-general by date:

Previous
From: "Jonathan Chum"
Date:
Subject: Trouble with UNIX TimeStamps
Next
From: "Jonathan Chum"
Date:
Subject: Re: Trouble with UNIX TimeStamps