SQL
AخA
USE nlwiki_p;
SELECT tl_namespace, tl_title, COUNT(*) AS `count`, GROUP_CONCAT(DISTINCT tl_from_namespace) AS ns
FROM templatelinks
WHERE
tl_namespace!=8 AND
tl_from_namespace NOT IN (2, 3) AND
NOT EXISTS (SELECT * FROM page WHERE page_namespace=tl_namespace AND page_title=tl_title)
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.