SQL
AخA
SELECT COUNT(rev_page)*COUNT(DISTINCT rev_user) AS 'Edits times unique editors', page_title AS 'Article' FROM svwiki_p.revision
JOIN svwiki_p.page ON rev_page = page_id
WHERE page_namespace = 0
AND rev_timestamp > DATE_FORMAT(DATE_SUB(NOW(),INTERVAL 8 DAY),'%Y%m%d%H%i%s')
GROUP BY page_title
ORDER BY COUNT(page_title) desc
LIMIT 20
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.