Fork of
WikiProject article counts
by WOSlinker
This query is marked as a draft
This query has been published
by GhostInTheMachine.
SQL
x
SELECT t.tl_title as ProjectTemplate, count(*) as ArticleCount
FROM templatelinks t
WHERE t.tl_title like 'WikiProject%'
AND t.tl_title not like '%/%'
AND t.tl_namespace=10
AND t.tl_from_namespace=1
GROUP BY t.tl_title
ORDER BY 2 desc, 1;
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.