SQL
AخA
SELECT actor_name, COUNT(*)
FROM revision
JOIN actor_revision ON actor_id = rev_actor
JOIN page ON page_id = rev_page
WHERE page_namespace = 4
AND page_title = 'In_the_news/Candidates'
AND rev_timestamp >= '202208230537'
GROUP BY actor_name
HAVING COUNT(*) >= 100
ORDER BY COUNT(*) 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.