SQL
AخA
SELECT rc_namespace, 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_bot = 0
GROUP BY rc_namespace;
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.