SQL
AخA
SELECT log_id, log_timestamp, actor_name AS 'blocker', log_action, log_title AS 'blockee', comment_text
FROM logging
JOIN actor_logging ON actor_id = log_actor
JOIN comment_logging ON comment_id = log_comment_id
WHERE log_type = 'block'
AND comment_text RLIKE '(^|[]}])[^[{]*\\|'
AND comment_text NOT LIKE '{{blocked proxy}}%';
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.