SQL
AخA
SELECT actor_name AS username, COUNT(*) AS noms
FROM revision_userindex
JOIN page ON rev_page = page_id
JOIN actor_revision ON rev_actor = actor_id
WHERE page_namespace = 10
AND page_title LIKE 'Did_you_know_nominations/%'
AND page_is_redirect = 0
AND rev_parent_id = 0
GROUP BY username
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.