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