From: | Alvaro Herrera <alvherre(at)commandprompt(dot)com> |
---|---|
To: | Linder Poclaba <linder(dot)poclaba(at)gmail(dot)com> |
Cc: | Jaime Casanova <systemguards(at)gmail(dot)com>, Jorge Martinez <jlm4303(at)yahoo(dot)com(dot)ar>, pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Tipos times |
Date: | 2006-07-19 03:43:36 |
Message-ID: | 20060719034336.GG4963@surnet.cl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Linder Poclaba escribió:
> yo también estoy con esa versión, la estructura de la tabla es:
>
> =# \d vuelta
> Table "public.vuelta"
> Column | Type |
> Modifiers
> --------------------+------------------------+------------------------------------------------------------
> id_vuelta | integer | not null default
> nextval('vuelta_id_vuelta_seq'::regclass)
> piloto | text |
> n_auto | integer |
> n_vuelta | integer |
> tiempo_i | time without time zone |
> tiempo_f | time without time zone |
> suma_tiempos | time without time zone |
> diferencia_tiempos | time without time zone |
Probablemente ninguno de los ultimos cuatro campos deberia ser "time
without time zone"; todos interval. Un campo time es una hora del dia;
"las cuatro de la tarde" o "las once y media de la noche". No es una
duracion, como "una hora y quince minutos". Para almacenar esto ultimo,
usa un interval.
--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2006-07-19 03:45:25 | Re: Duda con Createdb |
Previous Message | Alvaro Herrera | 2006-07-19 03:00:12 | Re: Tipos times |