SQL
x
USE wikidatawiki_p;
SELECT actor.actor_name as Username,
COUNT(Username) AS cnt
FROM page
JOIN revision ON page.page_id=revision.rev_page
WHERE page.page_namespace=146
AND revision.rev_parent_id=0 # No parent rev = page creation
JOIN actor ON revision.rev_actor=actor.actor_id
GROUP BY revision.rev_user
ORDER BY cnt DESC
#LIMIT 20;
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.