SQL
x
use kkwiki_p;
SELECT
substring(archive.ar_timestamp, 1, 6) as month,
count(archive.ar_id) as the_count
FROM
change_tag,
archive
WHERE
archive.ar_parent_id = 0 AND
ct_tag_id = (select ctd_id from change_tag_def where ctd_name = 'contenttranslation') AND
ar_rev_id = ct_rev_id
GROUP BY
month
ORDER BY
the_count 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.