888
#sql
#quarry
#globustut
#commons: red category links with one or more files from a specific user
SELECT
CONCAT('https://commons.wikimedia.org/wiki/Category:', REPLACE(cl.cl_to, ' ', '_')) AS category_url,
COUNT(*) AS file_count
FROM page p
JOIN image i ON i.img_name = p.page_title
JOIN actor a ON a.actor_id = i.img_actor
JOIN categorylinks cl ON cl.cl_from = p.page_id
LEFT JOIN page c
ON c.page_title = cl.cl_to
AND c.page_namespace = 14
WHERE p.page_namespace = 6
AND a.actor_name = 'Globustut'
AND c.page_id IS NULL
GROUP BY cl.cl_to
ORDER BY file_count DESC, cl.cl_to
