Created
December 23, 2014 09:47
-
-
Save atopal/2065624091506c4821a0 to your computer and use it in GitHub Desktop.
Top contributors by posts for Firefox for Android questions
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(*) as answernum | |
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 >= '2014-01-01' and qa.created <= '2014-12-01 0' | |
AND qq.`product_id`=2 | |
AND NOT qa.creator_id = qq.creator_id | |
GROUP BY username ORDER BY answernum DESC limit 100; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment