SQL
AخA
use commonswiki_p;
SELECT user_name as "Uploader",
Count(user_id) as "Number of uploads"
FROM categorylinks
JOIN page
ON page_id = cl_from
JOIN image
ON img_name = page_title
JOIN user
ON user_id = img_user
WHERE cl_to = 'License_review_needed'
GROUP BY user_name
HAVING Count(user_id) > 5
ORDER BY Count(user_id) DESC;
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.