Re: Picking out the most recent row using a time stamp column

Поиск
Список
Период
Сортировка
От Josh Berkus
Тема Re: Picking out the most recent row using a time stamp column
Дата
Msg-id 4D66F5B0.5080502@agliodbs.com
обсуждение исходный текст
Ответ на Re: Picking out the most recent row using a time stamp column  (Dave Crooke <dcrooke@gmail.com>)
Ответы Re: Picking out the most recent row using a time stamp column
Список pgsql-performance
On 2/24/11 3:38 PM, Dave Crooke wrote:
> Thanks to all .... I had a tickling feeling at the back of my mind that
> there was a neater answer here. For the record, times (all from
> in-memory cached data, averaged over a bunch of runs):
>
> Dependent subquery = 117.9 seconds
> Join to temp table = 2.7 sec
> DISTINCT ON = 2.7 sec

But wait, there's more!  You haven't tested the Windowing Function
solution.  I'll bet it's even faster.


SELECT id_key, time_stamp, value
FROM (
    SELECT id_key, time_stamp, value,
        row_number()
        OVER ( PARTITION BY id_key
            ORDER BY time_stamp DESC)
         as ranking
    FROM thetable
      ) as filtered_table
WHERE ranking = 1

--
                                  -- Josh Berkus
                                     PostgreSQL Experts Inc.
                                     http://www.pgexperts.com

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

Предыдущее
От: Dave Crooke
Дата:
Сообщение: Possible parser bug? .... Re: Picking out the most recent row using a time stamp column
Следующее
От: Jochen Erwied
Дата:
Сообщение: Re: Possible parser bug? .... Re: Picking out the most recent row using a time stamp column