Re: problem insert time into column timestamp

From: Darren Ferguson <darren(at)crystalballinc(dot)com>
To: frank_lupo <frank_lupo(at)email(dot)it>
Cc: frbn(at)efbs-seafrigo(dot)fr, <pgsql-general(at)postgresql(dot)org>
Subject: Re: problem insert time into column timestamp
Date: 2002-08-02 13:14:29
Message-ID: Pine.LNX.4.44.0208020914040.26374-100000@thread.crystalballinc.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

You should specify in the table declaration

aa time without time zone

HTH

On Fri, 2 Aug 2002, [utf-8] frank_lupo wrote:

> > frank_lupo a écrit:
> > > When working with Ingres, it is possible to create a field "date"
> > > and insert into this a time value e.g. '10:12:12'
> > > the current date is assigned automatically by Ingres
> > > e.g. '31/07/2002 10:12:12'
> > >
> > > When working with Postgres, I receive an error when trying to insert a
> > > time value into a timestamp field
> > > gedis30=# create table pippo (aa timestamp)\g
> > >
> > > gedis30=# insert into pippo (aa) values('10:12:12')\g
> > > ERROR: Bad timestamp external representation '10:12:12'
> > >
> > > How can I solve this problem ?
> >
> >
> > gedis30=# insert into pippo (aa) values(cast ('10:12:12' as time));
> >
> >
>
> Problem to execute insert command.
>
> gedis30=# insert into pippo (aa) values(cast ('10:12:12' as time));
> ERROR: column "aa" is of type 'timestamp with time zone' but expression is of type 'time without time zone'
> You will need to rewrite or cast the expression

Bye !!
Frank Lupo (Wolf) !!> frank_lupo a écrit:
> > > When working with Ingres, it is possible to create a field "date"
> > > and insert into this a time value e.g. '10:12:12'
> > > the current date is assigned automatically by Ing

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Josh Jore 2002-08-02 13:21:38 Re: How i can empty the buffers of a db
Previous Message Brett Schwarz 2002-08-02 13:02:58 Re: pgaccess libpgtcl