This query is marked as a draft This query has been published by ԱշոտՏՆՂ.

SQL

x
 
USE hywikisource_p; 
SELECT Count(page_title) AS c, 
       actor_name
FROM   revision 
       JOIN page 
         ON page_id = rev_page 
       JOIN comment 
         ON comment_id = rev_comment_id 
       JOIN actor 
         ON rev_actor = actor_id 
WHERE  ( comment_text LIKE "%Proofread%" 
          OR comment_text LIKE "%Սրբագրված%" ) 
       AND page_namespace = 104
GROUP  BY actor_name 
ORDER  BY c 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...