Fork of Top AfD participants who aren't NPPs or Admins (1 month) by MPGuy2824
This query is marked as a draft This query has been published by MPGuy2824.

SQL

AخA
 
SELECT user_name as Editor, page_title as 'Example FLC', count(*) as FLCedits
    FROM page p
    JOIN revision ON rev_page = page_id
    JOIN actor ON actor_id = rev_actor
    JOIN user ON actor_user = user_id
    WHERE page_namespace = 4
    and user_name!="FACBot"
    AND page_title LIKE "Featured_list_candidates/%"
    and user_name!=
    (SELECT user_name
      FROM page
      JOIN revision ON rev_page = page_id
      JOIN actor ON actor_id = rev_actor
      JOIN user ON actor_user = user_id
      WHERE page_namespace = 4
      and rev_parent_id=0 -- first revision of the page
      AND page.page_title=p.page_title
    )
    AND rev_timestamp > date_add(now(), interval -30 day)
    group by rev_actor, page_title
    having FLCedits > 1
    order by FLCedits 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...