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

SQL

AخA
 
SELECT 
    YEAR(revision.rev_timestamp) AS year, 
    COUNT(DISTINCT actor.actor_name) AS user_count
FROM page
JOIN revision 
    ON page.page_id = revision.rev_page
JOIN actor
    ON revision.rev_actor = actor.actor_id
WHERE page.page_namespace = 4
    AND page.page_title LIKE 'Articles_for_deletion/%'
    AND revision.rev_timestamp >= DATE_FORMAT(DATE_SUB(NOW(), INTERVAL 5 YEAR), '%Y%m%d%H%i%s')
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...