Re: TIMESTAMP

From: Espartano <espartano(dot)mail(at)gmail(dot)com>
To: Juan Jose Rosales Rodriguez <jjrosales(at)estudiantes(dot)uci(dot)cu>
Cc: Oswaldo Hernández <listas(at)soft-com(dot)es>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Lista Postgres <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: TIMESTAMP
Date: 2009-04-11 03:19:57
Message-ID: d353bd50904102019jf133de4ufaa065eec50bf2a6@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

2009/4/10 Juan Jose Rosales Rodriguez <jjrosales(at)estudiantes(dot)uci(dot)cu>:
> Buenas tengo el problema de que cuando hago un campo feha con el tipo timestamo y le pongo el valor por defecto now()
>
> No me sale nada a la hora de instertar , hay algo que tengo que configurar en el servidor?
> o en la bd?
>

Como definiste tu tabla ? le pusiste default now() cuando la creaste ?

mira:

pruebas=# create table prueba (id integer, fecha timestamp default now() );
CREATE TABLE
pruebas=# insert into prueba (id) values (1);
INSERT 0 1
pruebas=# select * from prueba;
id | fecha
----+-------------------------
1 | 2009-04-10 22:18:14.546
(1 row)

pruebas=#

--
"Linux is for people who hate Windows, BSD is for people who love UNIX".
"Social Engineer -> Because there is no patch for human stupidity"
"The Unix Guru's View of Sex unzip ; strip ; touch ; grep ; finger ;
mount ; fsck ; more ; yes ; umount ; sleep."
"Documentation is like sex: when it is good, it is very, very good;
and when it is bad, it is better than nothing."

In response to

  • TIMESTAMP at 2009-04-11 02:15:56 from Juan Jose Rosales Rodriguez

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Jose Gomez-Dans 2009-04-11 15:21:21 Ayuda con consulta
Previous Message Juan Jose Rosales Rodriguez 2009-04-11 02:15:56 TIMESTAMP