Re: Tipos times

From: "Linder Poclaba" <linder(dot)poclaba(at)gmail(dot)com>
To: "Linder Poclaba" <linder(dot)poclaba(at)gmail(dot)com>, "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-20 00:38:10
Message-ID: 5aa69e1b0607191738q24436df5v1b9c7ecab662ff36@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 7/18/06, Alvaro Herrera <alvherre(at)commandprompt(dot)com> wrote:
>
> 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.

Si tienes mucha razón está mal interpretar intervalos de tiempo con la hora
del día, tendré que cambiar el diseño de la base de datos, y quiera
preguntar porque funcionó la forma como sume "update vuelta set
suma_tiempo=tiempo_i-(-tiempo_f);"

Gracias de antemano.

--
> Alvaro Herrera
> http://www.CommandPrompt.com/
> The PostgreSQL Company - Command Prompt, Inc.
>

In response to

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Linder Poclaba 2006-07-20 00:41:45 Re: Tipos times
Previous Message Linder Poclaba 2006-07-19 23:57:52 Re: HERENCIA