SQL
x
USE wikidatawiki_p;
SELECT /*rev_id, actor_name,*/ page_title
FROM change_tag
JOIN revision ON rev_id=ct_rev_id
JOIN actor ON actor_id=rev_actor
JOIN page ON page_id=rev_page WHERE ct_tag_id=(
SELECT ctd_id
FROM change_tag_def
WHERE ctd_name='wikimedia-commons-app'
)
AND NOT actor_name IN ('Github-wiki-bot') # This bot was using our tag in the past
GROUP BY page_title
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.