SQL
AخA
SELECT
revision.rev_user_text as Username,
COUNT(revision.rev_id) AS Edits
FROM
revision JOIN page ON revision.rev_page = page.page_id
WHERE
`page_namespace` = 146
GROUP BY
rev_user
ORDER BY Edits DESC
LIMIT 10
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.