SQL
AخA
select actor.actor_name, count(revision.rev_id) as c from revision
join comment on comment.comment_id=revision.rev_comment_id
join actor on actor.actor_id=revision.rev_actor
where comment_text like "% ([[User:Ingenuity/AntiVandal|AV]])"
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.