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
~aanzx
.
Toggle Highlighting
SQL
SELECT rev_user_text AS user, -- Username of the editor COUNT(*) AS total_edits, -- Total number of edits by the user SUM(CASE WHEN ctd_name = 'proofreadpage-quality0' THEN 1 ELSE 0 END) AS without_text, SUM(CASE WHEN ctd_name = 'proofreadpage-quality1' THEN 1 ELSE 0 END) AS not_proofread, SUM(CASE WHEN ctd_name = 'proofreadpage-quality2' THEN 1 ELSE 0 END) AS problematic, SUM(CASE WHEN ctd_name = 'proofreadpage-quality3' THEN 1 ELSE 0 END) AS proofread, SUM(CASE WHEN ctd_name = 'proofreadpage-quality4' THEN 1 ELSE 0 END) AS validated FROM revision LEFT JOIN change_tag ON (rev_id = ct_rev_id) -- Join to get proofread quality tags LEFT JOIN change_tag_def ON (ct_tag_id = ctd_id) -- Join to get tag definitions WHERE rev_timestamp BETWEEN '2024-08-01 00:00:00' AND '2024-09-15 23:59:59' -- Date range filter GROUP BY user ORDER BY total_edits DESC;
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...