SQL
x
use tewiki_p;
SELECT actor_name, count(actor_name) as PROD_count FROM revision, page, actor
-- SELECT actor_name, page_title FROM revision, page, actor
where rev_comment_id = 20140
and page_id = rev_page
and actor_id=rev_actor
group by actor_name
Order by PROD_count 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.