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

SQL

AخA
 
SELECT
    YEAR(rev_timestamp) AS year,
    COUNT(DISTINCT actor_name) AS unique_editors
FROM
    revision
JOIN
    page ON revision.rev_page = page.page_id
JOIN
    actor ON revision.rev_actor = actor.actor_id
WHERE
    page.page_title = 'Reliable_sources/Noticeboard'
    AND page.page_namespace = 4
GROUP BY
    YEAR(rev_timestamp)
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...