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

SQL

x
 
SELECT COUNT(*) AS Automated_Edits 
FROM revision -- To find the number of edits we refer Revision table 
JOIN actor ON revision.rev_actor = actor.actor_id -- Joining actor and revision table 
JOIN user_groups ON actor.actor_user = user_groups.ug_user -- Joining user_group and actor table 
WHERE user_groups.ug_group = 'bot'
  AND revision.rev_timestamp BETWEEN '20230101' AND '20240301'; -- Filtering the output in specific dates
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...