Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Lectrician1
.
Toggle Highlighting
SQL
SELECT true_comment_length, COUNT(*) AS frequency FROM (SELECT LENGTH( -- Remove /* */ comments from the comment_text REGEXP_REPLACE(cr.comment_text, '/\\*.*?\\*/', '') ) AS true_comment_length, rc.rc_id FROM recentchanges rc JOIN comment_recentchanges cr ON rc.rc_comment_id = cr.comment_id WHERE rc.rc_bot <> 1 AND rc.rc_source = "mw.edit" AND NOT cr.comment_text LIKE 'Undid revision%' AND NOT cr.comment_text LIKE 'Restored revision%' AND NOT SUBSTRING(rc.rc_timestamp, 1, 8) = DATE_FORMAT(NOW(), '%Y%m%d') LIMIT 100000 ) AS subquery GROUP BY true_comment_length ORDER BY true_comment_length;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...