SQL
x
USE eswiki_p;
SET @CATE=replace("Wikipedistas de Venezuela"," ","_");
SELECT r.rev_user as id, r.rev_user_text as usuario, count(*) as ediciones
FROM revision_userindex r join page p on p.page_id = r.rev_page
join categorylinks c on c.cl_from = p.page_id
where c.cl_to = @CATE and r.rev_user >0
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.