SQL
AخA
select X.user_id, COUNT(*) as mec
FROM revision_userindex
JOIN actor_revision ON rev_actor = actor_id
JOIN (select * from user where user_editcount >= 1000000 order by user_editcount desc) as X ON X.user_id = actor_user
JOIN page ON rev_page = page_id AND page_namespace = 0
group by X.user_id;
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.