This query is marked as a draft This query has been published by Saeidpourbabak.

SQL

x
 
USE fawiki_p;
SELECT DISTINCT CONCAT ('# [[',REPLACE(page_title,'_',' '),']]')
FROM page
WHERE page_namespace=0
AND page_is_redirect=0
AND page_title LIKE "بخش\_%"
AND page_title NOT LIKE "بخش_(%"
AND page_id NOT IN (
  SELECT cl_from
  FROM categorylinks
  WHERE cl_to LIKE "مقالههای_خرد_پرو"
  OR cl_to LIKE "مقالههای_خرد_استونی"
  OR cl_to LIKE "%سوئیس%"
  OR cl_to LIKE "%تایلند%"
  OR cl_to LIKE "%آمریکا%"
  OR cl_to LIKE "%مالاوی%"
  OR cl_to LIKE "%آرژانتین%"
  OR cl_to LIKE "%ونزوئلا%"
  OR cl_to LIKE "%غنا%"
  OR cl_to LIKE "%تایوان%"
  OR cl_to LIKE "%سنت_لوسیا%"
  OR cl_to LIKE "%سودان%"
  OR cl_to LIKE "%نیوبرانزویک%"
  OR cl_to LIKE "%کانادا%"
  OR cl_to LIKE "%ماداگاسکار%"
  OR cl_to LIKE "%یمن%"
  OR cl_to LIKE "%اوگاندا%"
  OR cl_to LIKE "%ویتنام%"
  OR cl_to LIKE "%کره_شمالی%"
  OR cl_to LIKE "%السالوادور%"
  OR cl_to LIKE "%چین%"
  OR cl_to LIKE "%انتاریو%"
  OR cl_to LIKE "%عراق%"
  OR cl_to LIKE "%ژاپن%"
  OR cl_to LIKE "%فیلم%"
  OR cl_to LIKE "%لتونی%"
  OR cl_to LIKE "%پاناما%"
  OR cl_to LIKE "%واشینگتن%"
  OR cl_to LIKE "%سوئد%"
  OR cl_to LIKE "%نیجر%"
  OR cl_to LIKE "%موزامبیک%"
  OR cl_to LIKE "%سومالی%"
  OR cl_to LIKE "%بریتانیا%"
  OR cl_to LIKE "%اتریش%"
  OR cl_to LIKE "%تیمور_شرقی%"
  OR cl_to LIKE "%بیمارستان%"
  OR cl_to LIKE "%اسپانیا%"
  OR cl_to LIKE "%افغانستان%"
  OR cl_to LIKE "%رادیو%"
  OR cl_to LIKE "%الجزایر%"
  OR cl_to LIKE "%روسیه%"
  OR cl_to LIKE "%پاکستان%"
  OR cl_to LIKE "%اربیل%"
  OR cl_to LIKE "%استخوان%"
  )
AND page_id NOT IN (
  SELECT pp_page
  FROM page_props
  WHERE pp_propname = 'disambiguation'
)
AND page_title NOT IN (
  SELECT pl_title
  FROM pagelinks
  WHERE pl_from = 4092254 # ویکیپدیا:ویکیپروژه تقسیمات کشوری ایران/فاز دوم/تقسیمات کشوری ۱۳۹۵
  )
AND page_title NOT IN (
  SELECT rd_title
  FROM pagelinks JOIN page ON pl_title = page_title JOIN redirect ON rd_from = page_id
  WHERE pl_from = 4092254 # ویکیپدیا:ویکیپروژه تقسیمات کشوری ایران/فاز دوم/تقسیمات کشوری ۱۳۹۵
  )
ORDER BY page_title;  
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...