SQL
x
SELECT page_title, COUNT(*)
FROM page
INNER JOIN templatelinks
ON tl_from = page_id
INNER JOIN revision ON rev_page = page_id
WHERE rev_timestamp > (NOW() - INTERVAL 7 DAY)
AND tl_title = "WikiProject_Visual_arts"
AND page_namespace = 1
AND tl_namespace = 10
GROUP BY page_id
ORDER BY COUNT(*) DESC
LIMIT 10;
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.