Re: Optimizing >= and <= for numbers and dates

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: Optimizing >= and <= for numbers and dates
Дата
Msg-id 1065029881.85344.138.camel@jester
обсуждение исходный текст
Ответ на Optimizing >= and <= for numbers and dates  ("Dimitri Nagiev" <dnagiev@gmx.de>)
Список 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.

Вложения

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Dimitri Nagiev"
Дата:
Сообщение: Optimizing >= and <= for numbers and dates
Следующее
От: Jeff
Дата:
Сообщение: Re: Tuning/performance issue...