SQL
x
SET @username = 'NightWolf1223'; -- spaces not underscores
SELECT comment_text, page_title, rev_timestamp
FROM revision_userindex
JOIN actor ON rev_actor = actor_id
JOIN comment_revision ON comment_id = rev_comment_id
JOIN page ON rev_page = page_id
WHERE actor_name = @username -- spaces
AND page_title != REPLACE(@username, ' ', '_') -- underscores
AND page_namespace = 3 -- user talk
AND comment_text LIKE 'Notification: speedy deletion nomination of %'
ORDER BY 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.