Fork of
Articles created by CX in siwiki in 2021
by Amire80
This query is marked as a draft
This query has been published
by UOzurumba (WMF).
SQL
x
-- When appropriate, change 'contenttranslation' to 'sectiontranslation'
set @cx_edit_tag = (
select
ctd_id
from
change_tag_def
where
ctd_name = 'contenttranslation'
);
SELECT
rev_timestamp,
actor_name,
page_title,
page_namespace,
page_id,
MAX(ct_rev_id)
FROM
`change_tag`,
`revision`,
`actor`,
`page`
WHERE
rev_timestamp like '2020%' AND
ct_tag_id = @cx_edit_tag AND
page_namespace = 0 AND
rev_id = ct_rev_id AND
rev_page = page_id AND
rev_actor = actor_id
GROUP BY
page_id,
rev_timestamp
ORDER BY
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.
Query status: complete
Executed in 0.07 seconds as of Fri, 21 Jun 2024 20:29:46 UTC.