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

SQL

AخA
 
SELECT rc_user_text, count(*) as edits, sum(rc_new_len-rc_old_len) as sum_net_added
FROM enwiki_p.recentchanges
WHERE rc_new_len>rc_old_len AND rc_namespace = 0
GROUP BY rc_user_text
ORDER BY sum_net_added DESC
LIMIT 1000;
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...