Fork of ReferenceExpander edits, 2022/4/18-2022/6/30 & 2023/4/1- by Cryptic
This query is marked as a draft This query has been published by Cryptic.

SQL

AخA
 
SELECT r1.rev_id,
       r1.rev_timestamp,
       actor_name,
       page_namespace, page_title,
       r1.rev_len - COALESCE(r2.rev_len, 0) AS delta,
       comment_text
FROM revision AS r1
JOIN comment_revision ON comment_id = r1.rev_comment_id
JOIN actor_revision ON actor_id = r1.rev_actor
JOIN page ON page_id = r1.rev_page
LEFT JOIN revision AS r2 ON r2.rev_id = r1.rev_parent_id
WHERE comment_text IN ('Expanding bare references.',
                       'Expanding bare references ([[User:BrandonXLF/ReferenceExpander|ReferenceExpander]]).',
                       'Expanding bare references using [[User:BrandonXLF/ReferenceExpander|ReferenceExpander]]',
                       'Expanding bare references using [[w:User:BrandonXLF/ReferenceExpander|ReferenceExpander]]',
                       'Expanding bare references using [[en:w:User:BrandonXLF/ReferenceExpander|ReferenceExpander]]')
  AND (r1.rev_timestamp BETWEEN '20200513' AND '20220631'
       OR r1.rev_timestamp >= '20230401')
  AND page_namespace = 0
ORDER BY r1.rev_id ASC;
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...