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

SQL

AخA
 
SELECT tl_namespace, tl_title, COUNT(*) AS `count`, GROUP_CONCAT(DISTINCT tl_from_namespace) AS ns
FROM templatelinks RIGHT JOIN page pf ON tl_from=page_id
WHERE
    tl_namespace NOT IN (8, 100) AND
    tl_from_namespace NOT IN (2, 3) AND
    NOT (tl_namespace=828 AND tl_title REGEXP '/doc$') AND
    NOT (tl_from_namespace=4 AND pf.page_title REGEXP '/[Aa]rchief') AND
    NOT EXISTS (SELECT * FROM page_restrictions WHERE tl_from=pr_page AND pr_cascade=1) AND
    NOT EXISTS (SELECT * FROM page pt WHERE pt.page_namespace=tl_namespace AND pt.page_title=tl_title) AND
    NOT EXISTS (SELECT * FROM categorylinks WHERE cl_from=tl_from AND cl_to REGEXP '^Wikipedia:Verwijderbaar/')
GROUP BY tl_title
ORDER BY `count` 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...