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

SQL

AخA
 
select replace(concat("[[:{{subst:ns:",log_namespace,"}}:",replace(log_title,"_"," "),"]]"),":{{subst:ns:0}}:",":") as 'Page',
(select actor_name from actor_logging where actor_id=log_actor) as "Deleting admin",
comment_text as "Edit summary",
log_timestamp as "Timestamp" from logging_logindex join comment_logging on comment_id=log_comment_id
where log_type="delete" and log_action="delete"
and (
  ((comment_text rlike "G1[^0123]" or comment_text like "%G2%") and log_namespace=2) -- G1 and G2 don't apply to userspace
  or (comment_text rlike "WP:(CSD#)?A[0-9]" and log_namespace != 0) -- A* criteria only apply to mainspace
  or (comment_text rlike "WP:(CSD#)?F[0-9]" and log_namespace != 6) -- F* criteria only apply to files (primarily for completeness' sake, has no results in 2022 and only 4 in 2021)
  or (comment_text rlike "WP:(CSD#)?C[0-9]" and log_namespace != 14) -- C* criteria only apply to categories
  or (comment_text rlike "WP:(CSD#)?U[0-9]" and log_namespace != 2) -- U* criteria only apply to userpages
  or (comment_text rlike "WP:(CSD#)?U[0-9]" and log_namespace != 100) -- P* criteria only apply to portals (again very unlikely to occur)
) and (log_timestamp like "2022%")
order by log_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...