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

SQL

AخA
 
select COUNT(recentchanges.rc_id) as c, actor_name from recentchanges
join comment on recentchanges.rc_comment_id=comment.comment_id
join actor on recentchanges.rc_actor=actor.actor_id
where comment_text like "%AntiVandal%"
group by actor.actor_id
order by c 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.

Checking query status...