SQL
AخA
USE plwiki_p;
SELECT CONCAT("[[User:",a.actor_name,"]]") AS user_name, COUNT(a.actor_name) AS recent_user_editcount
FROM revision r
left join actor a on (a.actor_id = r.rev_actor)
WHERE
rev_timestamp BETWEEN 20200415000000 AND 20200516000000
AND a.actor_user IS NULL
GROUP BY a.actor_name
ORDER BY recent_user_editcount DESC;
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.