SQL
x
SELECT
YEAR(rev_timestamp) AS `Year`,
MONTH(rev_timestamp) AS `Month`, •••
COUNT(rev_id) AS `SPI_Edits`
FROM revision_userindex
JOIN page ON (rev_page = page_id)
WHERE page_title LIKE 'Sockpuppet_investigations%'
AND rev_actor = (SELECT actor_id
FROM actor_revision
WHERE actor_name = 'Robertsky')
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.