Re: Fractions of seconds in timestamps - Mailing list pgsql-general

From Jasen Betts
Subject Re: Fractions of seconds in timestamps
Date
Msg-id jn86uh$n42$2@reversiblemaps.ath.cx
Whole thread Raw
In response to Fractions of seconds in timestamps  (rihad <rihad@mail.ru>)
Responses Re: Fractions of seconds in timestamps  (Valentin Militaru <valentin.militaru@telcor.ro>)
List pgsql-general
On 2012-04-24, rihad <rihad@mail.ru> wrote:
> As PostgreSQL stores timestamps with a fractional part, does it mean that
> WHERE f BETWEEN '2012-04-23 00:00:00' AND '2012-04-23 23:59:59' might miss
> records with values of f equal to 23:59:59.1234 or so?

yes, it does. BETWEEN doesn't work well for timestamps.
you have to do it the long way

   f >= '2012-04-23 00:00:00' AND f < '2012-04-24 00:00:00'



--
⚂⚃ 100% natural

pgsql-general by date:

Previous
From: Toby Corkindale
Date:
Subject: Bug? Query plans / EXPLAIN using gigabytes of memory
Next
From: Valentin Militaru
Date:
Subject: Re: Fractions of seconds in timestamps