vote up 3 vote down star

I have a large table with list of scores like this, one score per user:

user,score
------
 matt,10
 john,20 
 bill,30

I want to make a query that answers to question: "John, you are faster than xx percent of others"

How to make such a query for Microsoft SQLServer 2000 with optimal performance.

flag

77% accept rate

1 Answer

vote up 4 vote down check

I don't have MSSQL 2k around, but this works on 2005 and with proper indexes in both score and user should perform reasonably well.

SELECT (count(*)/(SELECT cast(count(*) as float) FROM users))*100 FROM users
WHERE score < (SELECT score FROM users WHERE user = 'john')
link|flag
I just tested if on MS SQLServer2000. And it works! – Ron Tuffin Nov 17 '08 at 11:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.