SQL
x
USE zhwiki_p;
SELECT COUNT(*)
FROM revision
LEFT JOIN actor ON rev_actor = actor_id
LEFT JOIn user_groups ON actor_user = ug_user AND ug_group IN ('patroller', 'sysop', 'bot', 'autoreviewer')
WHERE revision.rev_timestamp > '20200301000000'
AND revision.rev_timestamp < '20200308000000'
AND ug_group IS NOT NULL;
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.