SQL
x
USE wikidatawiki_p;
SELECT revision.rev_user_text as Username,
COUNT(revision.rev_user_text) 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
AND revision.rev_user_text = "Vesihiisi"
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.