Fork of zhwp: delete log comment list by Xiplus
This query is marked as a draft This query has been published by Xiplus.

SQL

x
 
USE zhwiki_p;
SELECT comment_text, COUNT(*) FROM (
SELECT log_timestamp, log_id, UCASE(CONVERT(comment_text USING latin1)) AS `comment_text`
FROM logging
LEFT JOIN comment ON log_comment_id = comment_id
WHERE log_type = "delete"
    AND log_action = "delete"
    AND comment_text REGEXP "^[A-Za-z][0-9]+$"
    AND log_timestamp > '20200101000000'
LIMIT 10000
) logging2
GROUP BY comment_text
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...