From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | Wdiaz <wdiaz(at)unipamplona(dot)edu(dot)co> |
Cc: | pgsql-es-ayuda <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Re: Campo fecha no toma horas min y seg |
Date: | 2006-10-05 04:12:11 |
Message-ID: | c2d9e70e0610042112q49a8974j756601e53ba06fa0@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 10/4/06, Wdiaz <wdiaz(at)unipamplona(dot)edu(dot)co> wrote:
> cuando ejecuto el siguiente insert, no toma las horas min y seg
>
> insert into iteracion.actividad (modu_id, tiac_id, acti_descripcion,
> comp_id, ticl_id, pers_id,acti_horasestimadas, acti_fechainicio,
> acti_fechafin, acti_observacion, acti_fechacambio, acti_registradopor)
> values (3, 1, upper('Ajustes Informes DIAN'), 3, 2, 4, 8,
> to_date('2006-07-17 08:00:00','yyyy-mm-dd hh24:mm:ss'),
> to_date('2006-07-17 18:00:00','yyyy-mm-dd hh24:mm:ss'),
> upper('Terminando la funcionalidad'), now(), 'WDP' );
>
> Despues de insertado le hago un select * y me da
>
> "77";"3";"1";"3";"AJUSTES INFORMES DIAN";"TERMINANDO LA
> FUNCIONALIDAD";"2006-01-17 00:00:00";"2006-01-17 00:00:00";"2006-10-04
> 19:04:17.253042";"WDP";"4";"8";"2"
>
> que sera?
>
la funcion to_date retorna un date (año, mes, dia) lo que tu quieres
es un timestamp asi que deberias usar la funcion to_timestamp
--
Atentamente,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook
From | Date | Subject | |
---|---|---|---|
Next Message | emi | 2006-10-05 11:19:04 | Re: ayuda a una duda sql |
Previous Message | Wdiaz | 2006-10-05 00:06:58 | Campo fecha no toma horas min y seg |