Fork of AVG length of all articles in ukwiki by month. Stable by Alex Blokha
This query is marked as a draft This query has been published by Alex Blokha.

SQL

AخA
 
SELECT concat(YEAR(rf.rev_timestamp) , '_', MONTH(rf.rev_timestamp)) as date, avg(page_len)
FROM ukwiki_p.page p 
LEFT JOIN  revision rf ON rf.rev_page = p.page_id
WHERE 
 rf.rev_parent_id = 0 and
page_namespace=0 
and page_is_redirect=0
and
rev_timestamp between '20221231235959' and '20231231225959' 
GROUP BY
date
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...