This query is marked as a draft This query has been published by Cryptic.

SQL

AخA
 
SELECT user_name, COUNT(rev_id)
FROM user
JOIN user_groups ON ug_user = user_id
JOIN actor_revision ON actor_user = user_id
JOIN revision_userindex ON rev_actor = actor_id
WHERE ug_group = 'sysop'
  AND rev_timestamp >= '2018'
  AND rev_timestamp <= '202208080051' -- timestamp of my comment saying 'down to 180', since I accidentally reran this query a month later
GROUP BY user_name
HAVING COUNT(rev_id) < 100
ORDER BY COUNT(rev_id) 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.

Checking query status...