Re: Multicolumn order by

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Multicolumn order by
Дата
Msg-id 19819.1145401713@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Multicolumn order by  (Theo Kramer <theo@flame.co.za>)
Ответы Re: Multicolumn order by
Список pgsql-performance
Theo Kramer <theo@flame.co.za> writes:
> select * from mytable where
>   (c1 = 'c1v' and c2 = 'c2v' and c3 >= 'c3v') or
>   (c1 = 'c1v' and c2 > 'c2v') or
>   (c1 > 'c1v')
>   order by c1, c2, c3;

Yeah ... what you really want is the SQL-spec row comparison operator

select ... where (c1,c2,c3) >= ('c1v','c2v','c3v') order by c1,c2,c3;

This does not work properly in any current PG release :-( but it does
work and is optimized well in CVS HEAD.  See eg this thread
http://archives.postgresql.org/pgsql-hackers/2006-02/msg00209.php

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: creating of temporary table takes very long
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: Multicolumn order by