Re: Using index with order desc

Поиск
Список
Период
Сортировка
От Helge Bahmann
Тема Re: Using index with order desc
Дата
Msg-id Pine.LNX.4.44.0207171433070.19462-100000@lothlorien.stunet.tu-freiberg.de
обсуждение исходный текст
Ответ на Using index with order desc  (Dave Smith <dave.smith@candata.com>)
Список pgsql-general
On 16 Jul 2002 Dave Smith wrote:

> CREATE INDEX transfer_5 on transfer(company_id,module);
[snip]
> explain select * from transfer where company_id=1012 order by
> company_id,module desc;
[snip]
> NOTICE:  QUERY PLAN:
>
> Sort  (cost=462.74..462.74 rows=117 width=176)
>   ->  Index Scan using transfer_5 on transfer  (cost=0.00..458.71
> rows=117 width=176)

yes, similiar problem once hit me as well... try:

explain select * from transfer where company_id=1012 order by
company_id desc, module desc;
           ^^^^

Regards
--
Helge Bahmann <bahmann@math.tu-freiberg.de>             /| \__
The past: Smart users in front of dumb terminals       /_|____\
                                                     _/\ |   __)
$ ./configure                                        \\ \|__/__|
checking whether build environment is sane... yes     \\/___/ |
checking for AIX... no (we already did this)            |


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

Предыдущее
От: "Peter Gibbs"
Дата:
Сообщение: Re: max() not using index
Следующее
От: Manfred Koizar
Дата:
Сообщение: Re: Using index with order desc