Created
April 24, 2013 11:39
-
-
Save atopal/5451507 to your computer and use it in GitHub Desktop.
top forum contributors in the last 6 month
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT username, count(distinct(question_id)) as threadnum | |
| FROM questions_question qq | |
| JOIN questions_answer qa ON qa.question_id = qq.id | |
| JOIN auth_user au ON qa.creator_id = au.id | |
| WHERE qa.created > '2012-10-24' and qa.created <= '2013-04-24' | |
| AND NOT qa.creator_id = qq.creator_id | |
| GROUP BY username ORDER BY threadnum DESC LIMIT 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment