SQL
AخA
SELECT
YEAR(rev_timestamp) AS `year`,
MONTH(rev_timestamp) AS `month`,
page_namespace,
COUNT(rev_id) AS `count`
FROM revision_userindex
JOIN page ON (rev_page = page_id)
WHERE rev_actor = (SELECT actor_id
FROM actor_revision
WHERE actor_name = 'India')
GROUP BY YEAR(rev_timestamp), MONTH(rev_timestamp)
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.