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

SQL

x
 
USE wikidatawiki_p;
SELECT rc_this_oldid, rc_title, rc_user_text, rc_comment 
FROM recentchanges
WHERE (
   rc_comment REGEXP 'wbsetdescription-(add|set|remove)...(bn)'
OR rc_comment REGEXP 'wbsetlabel-(add|set|remove)...(bn)'
OR rc_comment REGEXP 'wbsetalias-(add|set|remove)...(bn)'
OR rc_comment REGEXP 'wbsetsitelink-(add|set|remove)...(bn)'
OR rc_comment REGEXP 'clientsitelink-(update|remove)..(bn)'
)
ORDER BY rc_id 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...