SQL
AخA
USE fawiki_p;
#SELECT DISTINCT concat('* [[رده:',REPLACE(page_title,'_',' '),']], [[رده:',REPLACE(REPLACE(page_title,'_',' '),'شهرهای شهرستان','مناطق مسکونی در شهرستان'),']]')#,REPLACE(frst.cl_to,'مناطق_مسکونی_در','شهرهای'), REPLACE(frst.cl_to,'مناطق_مسکونی_در_','')
SELECT DISTINCT concat('رده:',REPLACE(page_title,'_',' ')),concat('رده:',REPLACE(REPLACE(page_title,'_',' '),'شهرهای شهرستان','مناطق مسکونی در شهرستان'))#,REPLACE(frst.cl_to,'مناطق_مسکونی_در','روستاهای'), REPLACE(frst.cl_to,'مناطق_مسکونی_در_','')
FROM page
WHERE page_namespace=14
AND page_is_redirect = 0
AND page_title LIKE 'شهرهای_شهرستان%'
AND page_id NOT IN (
SELECT cl_from
FROM categorylinks
WHERE cl_to = REPLACE(page_title,'شهرهای_شهرستان','مناطق_مسکونی_در_شهرستان')
)
AND EXISTS (
SELECT null
FROM category
WHERE cat_title = REPLACE(page_title,'شهرهای_شهرستان','مناطق_مسکونی_در_شهرستان')
)
AND REPLACE(page_title,'شهرهای_','') IN (
SELECT pl_title
FROM pagelinks
WHERE pl_from = 4092254 # ویکی•پدیا:ویکی•پروژه تقسیمات کشوری ایران/فاز دوم/تقسیمات کشوری ۱۳۹۵
);
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.