This query is marked as a draft This query has been published by TheresNoTime.

SQL

AخA
 
SELECT SUBSTR(rev_timestamp, 1, 6) AS MONTH, COUNT(rev_id) AS edits 
FROM revision 
JOIN change_tag ON ct_rev_id = rev_id 
JOIN user ON rev_user = user_id 
WHERE ct_tag = 'ContentTranslation'
AND user_editcount >= 0
GROUP BY MONTH;
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.

Checking query status...