Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
Fork of
Pages of a main category's direct subcategories
by
Arjunaraoc
This query is marked as a draft
This query has been published
by
Arjunaraoc
.
Find total number of pages in a upper level category, Examples villages in a district, with sub category of mandal
Toggle Highlighting
SQL
use tewiki_p; SELECT ROW_NUMBER() Over (Order by page_title) as Sl_no, CONCAT("[[",page_title,"]]") as page, cl_to as category FROM page p JOIN categorylinks cl ON p.page_namespace = 0 -- main page AND cl.cl_from = p.page_id AND cl.cl_to in ( SELECT page_title as subcat FROM page p JOIN categorylinks cl ON p.page_namespace = 14 -- Optional namespace check. 14 - categories, 6 - files AND cl.cl_from = p.page_id AND cl.cl_to = "ప్రకాశం_జిల్లా_గ్రామాలు" -- Insert your category here. ) INNER JOIN revision ON p.page_latest = rev_id INNER JOIN externallinks ON p.page_id = el_from WHERE rev_deleted = 0 AND el_to LIKE "%www\.onefivenine\.com%";
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...