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

SQL

AخA
 
SELECT page_title,
       GROUP_CONCAT(DISTINCT cl_to SEPARATOR '|') AS `category`,
       page_len,
       COUNT(DISTINCT pl_title) 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;
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...