Fork of sub-subcat arts with cats and Qs by Jheald
This query is marked as a draft This query has been published by Jheald.

SQL

AخA
 
use enwiki_p;
SELECT pp.pp_value, p2.page_title, GROUP_CONCAT(c_up.cl_to SEPARATOR ' / ') AS cats 
FROM categorylinks AS c1
JOIN page AS p1 ON c1.cl_from=p1.page_id AND p1.page_namespace=14 AND p1.page_is_redirect=0
JOIN categorylinks AS c2 ON c2.cl_to = p1.page_title
JOIN page AS p2 ON c2.cl_from=p2.page_id AND p2.page_namespace=0 AND p2.page_is_redirect=0
JOIN categorylinks AS c_up ON c_up.cl_from=p2.page_id
JOIN page_props AS pp ON pp.pp_page = p2.page_id AND pp.pp_propname = 'wikibase_item'
WHERE c1.cl_to='Wards_of_England'
GROUP BY p2.page_title;
#LIMIT 500;
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.

Checking query status...