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

SQL

x
 
USE fawiki_p;
SELECT DISTINCT pl_title,
    pl_namespace,
    count(*)
FROM pagelinks
INNER JOIN page ON pl_from = page_id
LEFT JOIN categorylinks ON page_id = cl_from
WHERE pl_title NOT IN (
        SELECT page_title
        FROM page
        WHERE page_namespace = 0
        )
    AND pl_namespace = 0
    AND page_namespace = 0
    AND page_id IN (
        SELECT cl_from
        FROM categorylinks
        WHERE cl_to LIKE "روستاهای_%"
        )
GROUP BY page_id
ORDER BY count(*) DESC LIMIT 100;
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...