SQL
AخA
SELECT substr(rev_timestamp, 1, 4) as year, count(1)
FROM revision rev
inner join page on page_id = rev_page
WHERE rev_parent_id = 0
and page_namespace in (0, 100)
and substr(rev_timestamp, 1, 4) between 2019 and 2022
group by 1
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.