Fork of
Admins w/1001+ edits in the last month
by Cryptic
This query is marked as a draft
This query has been published
by Cryptic.
SQL
AخA
SELECT COUNT(DISTINCT rc_id), actor_name, GROUP_CONCAT(DISTINCT ug_group)
FROM recentchanges -- last 30 days
JOIN actor_recentchanges ON actor_id = rc_actor
LEFT JOIN user_groups ON ug_user = actor_user
WHERE rc_type IN (0, 1) -- create new page, edit existing page
AND actor_user IS NOT NULL
GROUP BY rc_actor
HAVING COUNT(DISTINCT rc_id) > 1000 AND GROUP_CONCAT(DISTINCT ug_group) NOT RLIKE '\\b(bot|sysop)\\b'
ORDER BY COUNT(DISTINCT rc_id) 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.