This query is marked as a draft This query has been published by ASammour.

SQL

AخA
 
use arwiki_p;
select user_name, count(*)/user_editcount as average
from user
inner join revision
on rev_user = user_id
inner join page
on page_id = rev_page
where (20180413000000 -  user_registration) < 200000000
and ((page_namespace%2 =1) or (page_namespace = 4))
having average > 0.333333
group by user_name
limit 50;
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.

Checking query status...