Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Aidan9382
.
create a list of talk pages that are redirects with non-redirect archive subpages, mainly to find pages that have been moved improperly without their subpages For simplicity sakes, the archive subpages must follow the ' /Archive %(counter)d ' format to be picked up
Toggle Highlighting
SQL
select CONCAT('Talk:',page_title) as main_title from page where page_namespace = 1 and page_is_redirect = 1 and page_title not like "%Archive%" -- Rare false flags but eh and page_random < 0.01 -- Execution time stuff and exists ( select 1 from page as subpage where subpage.page_namespace = 1 and subpage.page_is_redirect = 0 and subpage.page_title like CONCAT(page.page_title,"/Archive%") );
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...