Re: index question

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: index question
Дата
Msg-id 9109.1003455570@sss.pgh.pa.us
обсуждение исходный текст
Ответ на index question  (Joseph Shraibman <jks@selectacast.net>)
Список pgsql-sql
Joseph Shraibman <jks@selectacast.net> writes:
> Lets say I have a table with columns a and b.  I want to do a query like
> SELECT count(distinct b) WHERE a = 2;

> Should I have an index on a or an index on (a,b)?

At present, only an index on a will help any.  Our implementation of
count(distinct ...) isn't bright enough to make use of indexes.

Now an index on (a,b) can substitute for an index on a, so if you
have other queries that could use both columns of the (a,b) index
then it might be worth making that instead of an index on a.
        regards, tom lane


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: When will vacuum go away?
Следующее
От: Joseph Shraibman
Дата:
Сообщение: Re: When will vacuum go away?