SQL
x
SELECT actor_name, COUNT(*) c
FROM revision_userindex
JOIN page ON rev_page = page_id
JOIN actor_revision ON rev_actor = actor_id
JOIN pagelinks ON page_id = pl_from
JOIN linktarget ON pl_target_id = lt_id
WHERE page_namespace = 146
AND lt_title = "Q150" # French
AND lt_namespace = 0
GROUP BY actor_user
ORDER BY c DESC;
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.