SQL
x
SELECT page_title, actor_name, rev_timestamp
FROM revision
JOIN page ON page_id=rev_page AND page_namespace=0
JOIN actor ON actor_id=rev_actor AND (page_title LIKE CONCAT("%", actor_name, "%") OR page_title LIKE CONCAT("%", REPLACE(actor_name," ","_"), "%"))
WHERE rev_parent_id=0 AND rev_timestamp>'2024'
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.