Re: Select "todays" timestamps in an index friendly way - Mailing list pgsql-general

From David Rowley
Subject Re: Select "todays" timestamps in an index friendly way
Date
Msg-id CAKJS1f9Cy6qkN7De=Spd2WDgaVZKzSgFjf+bqsgS0W92cVuGMA@mail.gmail.com
Whole thread Raw
In response to Re: Select "todays" timestamps in an index friendly way  (Mike Rylander <mrylander@gmail.com>)
List pgsql-general
On 24 October 2018 at 07:14, Mike Rylander <mrylander@gmail.com> wrote:
>
> On Tue, Oct 23, 2018 at 5:38 AM Lutz Horn <lutz.horn@posteo.de> wrote:
> > I am looking for a way to select all timestamps that are "today" in an
> > index friendly way. This select should not depend on the concrete value
> > of "today".
>
> Per TFM, https://www.postgresql.org/docs/10/static/datatype-datetime.html
> on table 8.13, you can use special input values:
>
> SELECT * FROM t WHERE ts >= 'today'::timestamp AND ts < 'tomorrow'::timestamp;

Of course, you'd need to be careful never to use that in a view or
even a PREPAREd statement.  Those abbreviations are evaluated when the
query is parsed. In those cases, you'd just get the results for
whatever day you did CREATE VIEW or PREPARE.

-- 
 David Rowley                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services


pgsql-general by date:

Previous
From: Andreas Joseph Krogh
Date:
Subject: Sv: Re: Sv: Re: Oracle vs PG
Next
From: Ravi Krishna
Date:
Subject: Re: Oracle vs PG