This query is marked as a draft This query has been published by This, that and the other.

SQL

AخA
 
select rev_id, rev_timestamp, user_name, page_namespace, page_title, comment_text 
from revision inner join comment on rev_comment_id = comment_id inner join page on rev_page = page_id
    inner join actor on rev_actor = actor_id left join user on actor_user = user_id
    left join user_groups on user_id = ug_user and ug_group = 'bot'
where page_namespace not in (2,3) -- skip user/user talk
and coalesce(user_name, '') not in ('WikiBayer', 'Мегадятел') -- skip a wave of page move vandalism from May 2024
and case when user_name is null then true else ug_group is null end
order by rev_timestamp 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...