SQL
AخA
USE enwiki_p;
SELECT cl_to,
count(*) AS numarticles
FROM categorylinks
JOIN page
ON cl_from=page_id
WHERE page_namespace IN (0,1)
AND cl_to LIKE 'WikiProject\_%'
GROUP BY cl_to;
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.