Re: Optimizing >= and <= for numbers and dates - Mailing list pgsql-performance

From Rod Taylor
Subject Re: Optimizing >= and <= for numbers and dates
Date
Msg-id 1065029881.85344.138.camel@jester
Whole thread Raw
In response to Optimizing >= and <= for numbers and dates  ("Dimitri Nagiev" <dnagiev@gmx.de>)
List pgsql-performance
On Wed, 2003-10-01 at 13:30, Dimitri Nagiev wrote:
> Hi all,
>
> I haven't found any official documentation about the postgres sql optimizer
> on the web, so please forgive me if there is such a document and point me to
> the right direction.
>
> I've got the following problem: I cannot make the postgres SQL Optimizer use
> an index on a date field to filter out a date range, e.g.
>
> select * from mytable where mydate >= '2003-10-01';
>
>  Seq Scan on mytable  (cost=0.00..2138.11 rows=12203 width=543)
>    Filter: (mydate >= '2003-09-01'::date)

EXPLAIN ANALYZE output please.

Attachment

pgsql-performance by date:

Previous
From: "Dimitri Nagiev"
Date:
Subject: Optimizing >= and <= for numbers and dates
Next
From: Jeff
Date:
Subject: Re: Tuning/performance issue...