On Thu, May 08, 2003 at 13:44:22 -0600,
Alex Rice <alrice(at)ARCplanning(dot)com> wrote:
> I have a column with seconds since the unix epoch. How to convert it to
> date? Sorry I couldn't find it in the docs.
One way is:
select 'epoch'::timestamp + 1234 * '1 second'::interval;
Another is:
select 1234::abstime;