Fork of fawiki articles created in April 2021 by non-bot users by Huji
This query is marked as a draft This query has been published by Quiddity (WMF).

SQL

AخA
 
select
  page_title,
  actor_name
from page
join revision_userindex
  on page_id = rev_page
  and rev_parent_id = 0
  and page_namespace = 0
join actor
  on rev_actor = actor_id
where
  rev_timestamp > '20200401000000'
  and rev_timestamp < '20200501000000'
  and not exists (
    select ug_user
    from user_groups
    where
      ug_group = 'bot'
      and ug_user = actor_user
  )
order by rev_timestamp
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...