SQL
x
use hewiki_p;
select rev_user_text, count(*) from revision join page
on rev_page = page_id
where rev_parent_id = 0
#and rev_user_text in ("בורה בורה", "IKhitron", "דוד שי", "Gilgamesh", "ערן")
and page_namespace in (0, 4, 8, 10, 12, 14, 828)
and page_is_redirect = 0
group by rev_user_text
order by count(*) desc
limit 100;
select * from user_groups 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.