Re: Sorted group by

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: Sorted group by
Дата
Msg-id 4C613A04020000250003441E@gw.wicourts.gov
обсуждение исходный текст
Ответ на Sorted group by  (Matthew Wakeling <matthew@flymine.org>)
Ответы Re: Sorted group by  (Jonathan Blitz <jblitz@013.net>)
Список pgsql-performance
Matthew Wakeling <matthew@flymine.org> wrote:

> I'm trying to eke a little bit more performance out of an
> application

In addition to the suggestion from Thomas Kellerer, it would be
interesting to try the following and see how performance compares
using real data.

select group, value from tbl x
  where not exists
        (select * from tbl y
          where y.group = x.group and y.number > x.number);

We have a lot of code using this general technique, and I'm curious
whether there are big gains to be had by moving to the windowing
functions.  (I suspect there are.)

-Kevin

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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: Sorted group by
Следующее
От: Jonathan Blitz
Дата:
Сообщение: Re: Sorted group by