Hi foks
This is an old chestnut which I've found a number of online threads for, and never seen a clever answer to. It seems a common enough idiom that there might be some slicker way to do it, so I thought I might inquire with this august group if such a clever answer exists ....
Consider the following table
create table data
ÂÂ (id_key int,
ÂÂÂ time_stamp timestamp without time zone,
ÂÂÂ value double precision);
create unique index data_idx on data (id_key, time_stamp);
with around 1m rows, with 3500 or so distinct values of id_key.
I need to find the most recent value for each distinct value of id_key. There is no elegant (that I know of) syntax for this, and there are two ways I've typically seen it done:
1. Use a dependent subquery to find the most recent time stamp, i.e.
select
ÂÂ a.id_key, a.time_stamp, a.value
from
ÂÂ data a
where
 a.time_stamp=
ÂÂÂÂ (select max(time_stamp)
ÂÂÂÂÂ from data b
ÂÂÂÂÂ where a.id_key=b.id_key)
2. Define a temporary table / view with the most recent time stamp for each key, and join against it:
select
ÂÂ a.id_key, a.time_stamp, a.value
from
ÂÂ data a,
ÂÂ (select id_key, max(time_stamp) as mts
ÂÂÂ from data group by id_key) b
where
ÂÂ a.id_key=b.id_key and a.time_stamp=b.mts
I've found that for my data set, PG 8.4.2 selects the "obvious" / "do it as written" plan in each case, and that method 2. is much quicker (2.6 sec vs. 2 min on my laptop) ....
Is there a more elegant way to write this, perhaps using PG-specific extensions?
Cheers
Dave
ÂÂ