SQL
AخA
SELECT page_title, GROUP_CONCAT(cl_to SEPARATOR ',') AS `category`, page_len, COUNT(*) AS `#/outgoing links to mainspace`
FROM page
JOIN pagelinks ON pl_from = page_id AND pl_namespace = 0
JOIN categorylinks ON cl_from = page_id AND cl_to LIKE '1%Argentine\_films'
WHERE page_namespace = 0
AND page_is_redirect = 0
AND page_len < 2000
GROUP BY page_title
HAVING COUNT(*) < 15;
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.