Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have these three (simplified) tables for a contest application:

**user**
user_id    

**contest**
contest_id

**contest_entry**
contest_id
user_id

There are several contests, and each user can enter each contest once (creating a contest_entry record).

Thus far there have been 5 contests, so I'd like to get a count of how many users have entered 0, 1, 2, 3, 4, or 5 contests. An example of the format I'm looking for is this:

num_contests_entered      num_users
0                         102
1                         87
2                         345
3                         254
4                         567
5                         489

I am completely stumped on the SQL needed to achieve this, so any help is greatly appreciated!

Best, Chris

EDIT: To clarify, an example of what I am looking for is

102 users entered 0 contests
87 users entered 1 contest
345 users entered 2 contests 

etc..

share|improve this question
@njk you're right. uhmm Chris, what is 0,1,2,3,4, and 5? – JW 웃 Oct 5 '12 at 15:46
Amended the question, I think it was a little ambiguous! – Chris Hayes Oct 5 '12 at 15:50

1 Answer

up vote 2 down vote accepted

You can write:

SELECT num_contests_entered,
       COUNT(1) num_users
  FROM ( SELECT COUNT(ce.contest_id) num_contests_entered
           FROM user u
           LEFT
          OUTER
           JOIN contest_entry ce
             ON ce.user_id = u.user_id
          GROUP
             BY u.user_id
       ) t
 GROUP
    BY num_contests_entered
 ORDER
    BY num_contests_entered
;

The subquery finds, for each user, how many contests they entered; the outer query groups users by that count, thereby determining the number of users that entered that many contests.

(Disclaimer: not tested.)

share|improve this answer
Doesn't seem to work. – FreshPrinceOfSO Oct 5 '12 at 15:58
@njk well, your fiddle shows that it works! The only missing part (as for my answer) are the lines where there are no user with a given participations number (1 and 3 in your case). – Raphaël Althaus Oct 5 '12 at 16:03
This worked for me, thanks very much! I will now dissect it and learn a thing or two :) – Chris Hayes Oct 5 '12 at 16:05
@RaphaëlAlthaus I am dyslexic at times. – FreshPrinceOfSO Oct 5 '12 at 16:40

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.