SQL
x
use hewiki_p;
select replace(page_title, "_", " ") as article, count(rev_id) as revisions from page inner join revision
on page_id = rev_page
where page_namespace = 0
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.