Fork of
10 000 editors
by Sergento
This query is marked as a draft
This query has been published
by Antanana.
SQL
x
use ukwiki_p;
select convert (r.rev_user_text using utf8) user, count(*) edits
from page p
left join revision r on r.rev_page = p.page_id
where convert (p.page_title USING utf8) like 'Вікі_любить_Землю/%'
and p.page_namespace = 4
and r.rev_user_text is not null
and convert (r.rev_user_text using utf8) not rlike 'Bot[0-9]?$|[0-9]{1,3}[.][0-9]{1,3}[.][0-9]{1,3}[.][0-9]{1,3}'
group by r.rev_user_text
having count(*) >= 1
order by 2 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.