SQL
x
USE plwiki_p;
SELECT MIN(rev_timestamp) AS firstedit, user_name, user_editcount
FROM revision r, user u, actor a
WHERE r.rev_actor = a.actor_id AND a.actor_user = u.user_id AND u.user_editcount > 6000
GROUP BY u.user_id
HAVING firstedit<'20040829070000'
ORDER BY u.user_editcount 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.