Re: Getting the ranks of results from a query

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: abhi <abhi(at)MIT(dot)EDU>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Getting the ranks of results from a query
Date: 2004-04-07 04:29:54
Message-ID: 20040407042954.GA9055@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, Apr 01, 2004 at 11:05:55 -0500,
abhi <abhi(at)MIT(dot)EDU> wrote:
> I have a query of the form
>
> select id from member order by age;
>
> id
> -----
> 431
> 93
> 202
> 467
> 300
>
> In addition to the id, I would like the get the rank of the row--
> in other words:
>
> id | rank
> -----+-----------
> 431 | 1
> 93 | 2
> 202 | 3
> 467 | 4
> 300 | 5
>
>
> How do I do this with postgres? In the past, I have used something like
>
>
> select id, identity(int, 1,1) from member order by age;
>
>
> is there a postgres equivalent?

Note this is going to be slow. And that it relies on ID being unique.

SELECT id, (SELECT count(*) FROM member a WHERE a.age < b.age OR
(a.age = b.age AND a.id <= b.id)) AS rank
FROM member b
ORDER BY age, id;

For example:
bruno=> select * from member;
id | age
----+-----
1 | 10
5 | 20
10 | 5
20 | 8
9 | 8
(5 rows)

bruno=> SELECT id, (SELECT count(*) FROM member a WHERE a.age < b.age OR
bruno(> (a.age = b.age AND a.id <= b.id)) AS rank
bruno-> FROM member b
bruno-> ORDER BY age, id;
id | rank
----+------
10 | 1
9 | 2
20 | 3
1 | 4
5 | 5
(5 rows)

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Bruno Wolff III 2004-04-07 05:33:28 Re: order of results
Previous Message Tony Reina 2004-04-06 20:31:43 Help with COPY command