SQL
AخA
select actor_name, count(rc_id) as recentEdits, user_editcount as totalEdits
from recentchanges left join actor on rc_actor=actor_id left join user on actor_user=user_id
where rc_type = 1 group by actor_name order by recentEdits desc limit 5;
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.