This query is marked as a draft This query has been published by Rhododendrites.

SQL

AخA
 
SELECT
    actor_name AS user_name,
    COUNT(*) AS edit_count,
    page_title AS article_name
FROM
    enwiki_p.revision
JOIN
    enwiki_p.page ON rev_page = page_id
JOIN
    enwiki_p.actor ON rev_actor = actor_id
WHERE
    page_namespace = 0 -- Only consider articles in the main namespace
GROUP BY
    actor_name,
    page_title
HAVING
    COUNT(*) > 5000
ORDER BY
    edit_count DESC;
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.

Checking query status...