Re: Efficient date range search?

From: Jean-Luc Lachance <jllachan(at)nsd(dot)ca>
To: Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl>
Cc: shridhar_daithankar(at)persistent(dot)co(dot)in, pgsql-general(at)postgresql(dot)org
Subject: Re: Efficient date range search?
Date: 2002-10-07 17:32:09
Message-ID: 3DA1C519.D48F5B47@nsd.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Alvaro Herrera wrote:
>
> On Mon, Oct 07, 2002 at 12:11:35PM -0400, Jean-Luc Lachance wrote:
> > Shridhar Daithankar wrote:
> > > Create an index on died field. And query like
> > >
> > > select * from pets where died < "last year july 4 7:01 PM;
>
> > If the pet is still alive today died would be NULL and the where clause
> > would not be true.
>
> In that case check for NULL explicitly,
>
> select * from pets where died > [date] or died is null;

Then you're back to whole table scan... :(

>
> --
> Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
> "Porque francamente, si para saber manejarse a uno mismo hubiera que
> rendir examen... ¿Quién es el machito que tendría carnet?" (Mafalda)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jean-Luc Lachance 2002-10-07 17:36:11 Re: Efficient date range search?
Previous Message Sandeep Chadha 2002-10-07 17:21:06 Hot Backup