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
Jmorgan (WMF)
.
Should be: number of VE edits made by user who have made >100 total edits in past month. Last run August 19 2015.
Toggle Highlighting
SQL
#should be: number of VE edits made by user who have made >100 total edits in past month select r.rc_user userc, r.rc_user_text userd, count(r.rc_id) ve_edits from recentchanges r join tag_summary t on r.rc_id = t.ts_rc_id where t.ts_tags like "%visualeditor%" and r.rc_user in (select usera from (select r.rc_user usera, count(r.rc_id) all_edits from recentchanges r where r.rc_user != 0 group by r.rc_user) as tmp1 where all_edits > 100) group by userc order by userd;
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...