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
MPopov (WMF)
.
A leaderboard of top 10 Android editors by number of title description edits *made through the Suggested Edits feature*, including the number of days those edits were made over.
Toggle Highlighting
SQL
USE wikidatawiki_p; SELECT rev_user_text AS user_id, COUNT(*) AS n_total_edits, COUNT(DISTINCT LEFT(rev_timestamp, 8)) AS n_days_usage FROM revision LEFT JOIN revision_comment_temp rct ON revision.rev_id = rct.revcomment_rev LEFT JOIN `comment` ON rct.revcomment_comment_id = `comment`.comment_id LEFT JOIN change_tag ON revision.rev_id = change_tag.ct_rev_id WHERE rev_timestamp >= '20190401' AND NOT rev_deleted AND ct_tag_id = 14 -- android app edit AND (INSTR(rev_comment, '#suggestededit') > 0 OR INSTR(comment_text, '#suggestededit') > 0) GROUP BY user_id ORDER BY n_total_edits DESC, n_days_usage DESC LIMIT 10;
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...