SQL
AخA
SELECT COUNT(DISTINCT rev_user) AS 'Επεξεργασίες από χρήστες', page_title AS 'Λήμμα' FROM elwiki_p.revision
JOIN elwiki_p.page ON rev_page = page_id
WHERE page_namespace = 0
AND rev_timestamp > DATE_FORMAT(DATE_SUB(NOW(),INTERVAL 30 DAY),'%Y%m%d%H%i%s')
GROUP BY rev_user
ORDER BY COUNT(rev_user) desc
LIMIT 200
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.