This query is marked as a draft This query has been published by MusikAnimal.

SQL

AخA
 
SELECT
  actor_name,
  COUNT(rev_id) AS count
FROM
  enwikisource_p.revision_userindex
  JOIN enwikisource_p.page ON page_id = rev_page
  JOIN enwikisource_p.actor_revision ON actor_id = rev_actor
  JOIN enwikisource_p.user ON user_id = actor_user
WHERE
  page_namespace = 0
  AND page_title LIKE "A_Naval_Biographical_Dictionary/%"
  AND NOT EXISTS (
    SELECT 1
    FROM enwikisource_p.user_groups
    WHERE ug_user = user_id
      AND ug_group = 'bot'
  )
GROUP BY actor_name
ORDER BY 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.

Checking query status...