From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | "Edwin Quijada" <listas_quijada(at)hotmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Trabajndo con fechas y Horas |
Date: | 2007-05-25 19:58:35 |
Message-ID: | c2d9e70e0705251258n34484f6dgfb05620672369554@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 5/25/07, Jaime Casanova <systemguards(at)gmail(dot)com> wrote:
> On 5/25/07, Edwin Quijada <listas_quijada(at)hotmail(dot)com> wrote:
> >
> >
> > >From: "Jaime Casanova" <systemguards(at)gmail(dot)com>
> > >To: "Edwin Quijada" <listas_quijada(at)hotmail(dot)com>
> > >CC: pgsql-es-ayuda(at)postgresql(dot)org
> > >Subject: Re: [pgsql-es-ayuda] Trabajndo con fechas y Horas
> > >Date: Fri, 25 May 2007 17:34:45 +0000
> > >
> > >On 5/25/07, Edwin Quijada <listas_quijada(at)hotmail(dot)com> wrote:
> > >>Hola!
> > >>Estoy teniedno problemas para seleccionar unos registros por fechas.
> > >>necesito seleccionar records de una tabla la cual tiene un campo timestamp
> > >>pero para seleccionar solo tengo fecha y no es timestamp.
> > >>ej
> > >>select * from foo where f_tms = cast(fecha as timestamp) hice esto pero no
> > >>me retrono nada
> > >
> > >hazlo al reves "where cast(f_tms as date) = fecha"
> >
> > Jaime, en este caso se usaria el indice de la fecha tms?
> > >
>
> no, deberias crear otro sobre el cast o cambiar el select a algo como
> lo que esta en el adjunto
>
bueno el where debio ser
where f1 between current_date::timestamp with time zone and
current_date::timestamp with time zone +
'1 day - 1 second';
--
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 | Jaime Casanova | 2007-05-25 20:01:08 | Re: Hola |
Previous Message | Jaime Casanova | 2007-05-25 19:57:05 | Re: Trabajndo con fechas y Horas |