Re: index in desc order

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: index in desc order
Дата
Msg-id 25586.1288707019@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: index in desc order  (Szymon Guz <mabewlun@gmail.com>)
Ответы Re: index in desc order  (Michal Politowski <mpol+pg@meep.pl>)
Список pgsql-general
Szymon Guz <mabewlun@gmail.com> writes:
> On 2 November 2010 10:36, AI Rumman <rummandba@gmail.com> wrote:
>> Is it possible to create an index in descending order?

> create index i on t(i desc);

Note that there is actually no point at all in such a declaration.
The planner is perfectly capable of using backwards indexscans at
need, so the above index doesn't do anything you couldn't do with
a regular ascending-order index.

The cases where this feature is actually worth something is where
you have a multi-column index and you need different sort orders
for the components, for example

    create index xy on t (x asc, y desc);

which could be used to satisfy SELECT ... ORDER BY x ASC, y DESC.

The OP didn't say what he wanted to use the feature for, but
unless it's something like that, there's probably a better way.

            regards, tom lane

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

Предыдущее
От: Matthieu Huin
Дата:
Сообщение: Re: Implementing replace function
Следующее
От: Michal Politowski
Дата:
Сообщение: Re: index in desc order