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
Dominic
.
Toggle Highlighting
SQL
SET @basecat = 'Media contributed by the Plains to Peaks Collective'; SET max_recursive_iterations = 3; -- current maximum depth for this tree; 2504 categories, 8883596 pages SET @basecat = REPLACE(@basecat, ' ', '_'); WITH RECURSIVE deepcat (subcat) AS ( SELECT @basecat UNION DISTINCT SELECT page_title FROM categorylinks JOIN page ON page_id = cl_from AND page_namespace = 14 JOIN deepcat ON cl_to = subcat ) SELECT DISTINCT page_title FROM page JOIN categorylinks ON cl_from = page_id JOIN deepcat ON cl_to = subcat
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...