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

SQL

AخA
 
SELECT concat('[[',REPLACE(page_title,'_',' '),']]'), COUNT(ll_from)
FROM page JOIN langlinks ON page_id = ll_from
WHERE page_namespace=0
AND page_is_redirect = 0
AND NOT EXISTS (
  SELECT null
  FROM langlinks
  WHERE ll_from = page_id
  AND ll_lang = 'fa'
)
#----------- DAB -----------------------
/*AND page_id IN (
  SELECT pp_page
  FROM page_props
  WHERE pp_propname = 'disambiguation'
)*/
#----------- DAB -----------------------
#*/
GROUP BY ll_from HAVING COUNT(ll_from) > 30
ORDER BY COUNT(ll_from) DESC;
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...