SQL
AخA
SELECT COUNT(*), actor_name
FROM recentchanges -- last 30 days
JOIN actor_recentchanges ON actor_id = rc_actor
JOIN user_groups ON ug_user = actor_user AND ug_group = 'sysop'
WHERE rc_type IN (0, 1) -- create new page, edit existing page
GROUP BY rc_actor
HAVING COUNT(*) > 1000
ORDER BY actor_name ASC;
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.