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
Bawolff
.
Toggle Highlighting
SQL
use commonswiki_p; select user_name, user_editcount,( SELECT MAX(rc_timestamp) from recentchanges_userindex inner join actor_recentchanges on rc_actor = actor_id WHERE actor_name = user_name and rc_type < 5 ) 'last edit', groups, reg from ( select user_name, user_editcount, GROUP_CONCAT(ug1.ug_group SEPARATOR ", ") "groups", substr(user_registration, 1, 4) "reg" from user left join user_groups ug1 on ug1.ug_user = user_id left join user_groups ug2 on ug2.ug_user = user_id and ug2.ug_group = 'bot' where user_editcount >= 10000 and ug2.ug_user is null group by 1, 2, 4 order by null limit 3000 ) t WHERE EXISTS( select 1 from actor_recentchanges where user_name = actor_name ) order by user_editcount 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...