SQL
AخA
SELECT COUNT(*), actor_name
FROM recentchanges
JOIN actor_recentchanges ON actor_id = rc_actor
JOIN page ON page_namespace = rc_namespace AND page_title = rc_title
WHERE rc_new = 1
AND rc_namespace = 0
AND page_is_redirect = 0
GROUP BY actor_name
HAVING COUNT(*) >= 3
ORDER BY COUNT(*) 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.