Re: Between and miliseconds (timestamps)

From: Joe <dev(at)freedomcircle(dot)net>
To: Ezequias Rodrigues da Rocha <ezequias(dot)rocha(at)gmail(dot)com>
Cc: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Between and miliseconds (timestamps)
Date: 2006-11-10 23:00:49
Message-ID: 1163199650.682.9.camel@pampa
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi Ezequias,

On Fri, 2006-11-10 at 16:34 -0200, Ezequias Rodrigues da Rocha wrote:
> Ok thank you very much, but the suggestion (SQL:when field =
> '2006-09-06'::date) does not retrieve any row. It does not retrive any
> error too, but the suggestion does not applied to my requisition.

I think you want to cast the field, not the constant, e.g.,

testdb=> select * from t2 where date(tm) = '2006-9-6';
tm
-------------------------------
2006-09-06 00:00:01-04
2006-09-06 23:59:59.999999-04
(2 rows)

Joe

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Ezequias Rodrigues da Rocha 2006-11-12 14:03:30 Re: Between and miliseconds (timestamps)
Previous Message Ezequias Rodrigues da Rocha 2006-11-10 18:34:27 Re: Between and miliseconds (timestamps)