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?
idor isidunique? – Martin Smith Sep 20 '11 at 0:08referrerIDcolumn to get the most prolificreferrerIDs? And you need the referrer email as well? – Martin Smith Sep 20 '11 at 0:10