SQL
AخA
USE dewiki_p;
select avg(c) as average_monthly_edits from
(select count(rev_id) c, rev_timestamp DIV 100000000 as year_and_month
from revision inner join page on rev_page=page_id
where page_namespace = 8 and (page_title like "%.css" or page_title like "%.js")
group by year_and_month
having year_and_month>201000)
as statistics;
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.