how to leverage index for order by

Поиск
Список
Период
Сортировка
От sreeaurovindh viswanathan
Тема how to leverage index for order by
Дата
Msg-id CAC4BLaLMSisbOZ+YKV7AX=dtexO=3ia_1XmZfU=gCwXHt=Oc3Q@mail.gmail.com
обсуждение исходный текст
Список pgsql-novice
Hi,

I have about 140 million columns and would like to sort multiple
columns.(This is in a way a one time process).But I would like to get
the results atleast within a day time frame.
For example

I have a table which has five columns all are numbers except one column.

id bigserial
qid numeric
kid numeric
dId numeric
uId text.

I am trying to do something like this.

select * from schema.table1 order by qid desc,kid asc,dId desc

Please explain on how do create and leverage that index for sorting.

I tried in the following manner to come up with an index but my above
query did not use this index

create index myIndex on table1(qid asc)


thanks
Sree aurovindh V

Thanks

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

Предыдущее
От: sreeaurovindh viswanathan
Дата:
Сообщение: Re: Regarding Copy in postgresql
Следующее
От: Cheng
Дата:
Сообщение: Define a function that accepts query result as a parameter