Re: Syntax for converting double to a timestamp - Mailing list pgsql-general

From Frank Church
Subject Re: Syntax for converting double to a timestamp
Date
Msg-id 84b7c6460609031711u2999a4dfsa49b4ee26d755a0e@mail.gmail.com
Whole thread Raw
In response to Re: Syntax for converting double to a timestamp  (Peter Eisentraut <peter_e@gmx.net>)
Responses Re: Syntax for converting double to a timestamp  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
On 9/4/06, Peter Eisentraut <peter_e@gmx.net> wrote:
> Frank Church wrote:
> > error: cannot cast tupe double precision to timestamp without time
> > zone
> >
> > What is the right syntax?
>
> It's not clear what the meaning of a double precision as a timestamp
> would be.  How about you make that explicit:
>
> "timestamp" * interval '1 second' + timestamp '1900-01-01 00:00:00'
>

I tried the query in this form:

select *, "timestamp" * interval '1 second' + timestamp '1900-01-01
00:00:00' from ccmanager_log

This is the error message

ERROR:  operator does not exist: interval + timestamp without time zone
HINT:  No operator matches the given name and argument type(s). You
may need to add explicit type casts.

The version I am actually on is 7.4
- Hide quoted text -

> or whatever you had in mind.
>
> --
> Peter Eisentraut
> http://developer.postgresql.org/~petere/
>

pgsql-general by date:

Previous
From: Michael Glaesemann
Date:
Subject: Re: Syntax for converting double to a timestamp
Next
From: "Frank Church"
Date:
Subject: Re: Syntax for converting double to a timestamp