Fork of Hewiki top edited articles by IKhitron
This query is marked as a draft This query has been published by IKhitron.

SQL

x
 
use hewiki_p;
select page_namespace as namespace, replace(page_title, "_", " ") as article, count(rev_id) as revisions from page inner join revision
on page_id = rev_page
group by rev_page
order by count(rev_id) desc
limit 100
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...