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

SQL

AخA
 
SELECT
    YEAR(rev_timestamp) AS year,
    COUNT(*) AS num_edits
FROM
    revision
JOIN
    page ON rev_page = page_id
JOIN
    actor ON rev_actor = actor_id
JOIN
    user ON actor_user = user_id
LEFT JOIN
    user_groups ON user_id = ug_user AND ug_group = 'bot'
WHERE
    page_namespace = 4
    AND ug_user IS NULL
GROUP BY
    year
ORDER BY
    year;
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...