SQL
AخA
SELECT CONCAT('Wikipedia:', REPLACE(page_title, '_', ' ')) AS pagename,
COUNT(DISTINCT actor_user) AS 'non-anon editors',
(SELECT COUNT(DISTINCT pl_title)
FROM pagelinks
WHERE pl_from = page_id
AND pl_namespace IN (2, 3)) AS 'user(talk)page links',
CAST(MIN(rev_timestamp) AS DATETIME) AS 'creation'
FROM page
JOIN revision ON rev_page = page_id
JOIN actor_revision ON actor_id = rev_actor
WHERE page_namespace = 4
AND page_title LIKE 'Requests_for_adminship/%'
GROUP BY page_title;
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.