SQL
x
select
user_name,
count(rev_id) as edit_count,
sum(rev_len) as overall_bytes
from revision
inner join actor on rev_actor = actor_id
inner join user on actor_user = user_id
group by
user_id
order by
overall_bytes 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.