Nikolas Everett <nik9...@gmail.com> wrote:
 
> Am I missing something or is this really the best way to do this in
8.3?
 
How about this?:
 
SELECT y.*
  from (select a, max(revision) as revision
          from test where a between 2 and 200
          group by a) x
  join test y using (a, revision);
 
-Kevin

-- 
Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance

Reply via email to