SQL
x
USE wikidatawiki_p;
SELECT count(page.page_title) as pages, DATE_FORMAT(revision.rev_timestamp, '%Y-%m-%d') AS date
FROM page
JOIN revision ON page.page_id=revision.rev_page
JOIN pagelinks ON page.page_id=pagelinks.pl_from
WHERE page.page_namespace=146
AND revision.rev_parent_id=0 # No parent rev = page creation
AND pagelinks.pl_title="Q9027" # Swedish
GROUP BY date
ORDER 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.