Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I have a database table like this:

users
------
id
email
referrerID

How could I sort by the members with the most referrals? I was trying something along the lines of:

SELECT id,email FROM users WHERE 1 ORDER BY COUNT(referrerID) DESC;

But this does not seem to work. What is wrong?

I think that the default value 0 may also be affecting this somehow?

share|improve this question
What is the PK of this table? – Martin Smith Sep 20 '11 at 0:06
What is a "PK"? – Flipper Sep 20 '11 at 0:07
Primary Key. Does it have multiple rows per id or is id unique? – Martin Smith Sep 20 '11 at 0:08
id is the only primary key. – Flipper Sep 20 '11 at 0:09
So you want to count up the most common values in the referrerID column to get the most prolific referrerIDs? And you need the referrer email as well? – Martin Smith Sep 20 '11 at 0:10
show 1 more comment

1 Answer

up vote 3 down vote accepted

Following clarification

SELECT referrerID,
       COUNT(id) as Num
FROM   users
GROUP  BY referrerID
ORDER  BY CASE
            WHEN referrerID = 0 THEN -1
            ELSE COUNT(id)
          END DESC;  
share|improve this answer
The second one works, but is there a way to get the referrerID of 0 (zero) to be the last entry instead of above all of them? – Flipper Sep 20 '11 at 0:10
1  
@Flipper ORDER BY CASE WHEN referrerID = 0 THEN -1 ELSE COUNT(id) END DESC – Martin Smith Sep 20 '11 at 0:12
Thanks! That worked! :) – Flipper Sep 20 '11 at 0:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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