SQL
AخA
SELECT DATE_FORMAT(revision.rev_timestamp, '%Y-%m-%d') AS date, count(page.page_title) as pages
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="Q36236" # Malayalam
GROUP BY date
ORDER BY date DESC
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.