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, 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
where page_namespace not in (2,3) -- skip user/user talk
and rev_actor not in  -- skip a wave of page move vandalism from May 2024
    (select actor_id from actor where actor_user in (select user_id from user where user_name in ('WikiBayer', 'Мегадятел')))
order by rev_timestamp desc
limit 500;
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...