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 = 0 or rc_type=1) group by actor_name order by recentEdits 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.