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
Shinjiman
.
Toggle Highlighting
SQL
USE zh_yuewiki_p; -- Date and time (UTC) to list users with 30/500 threshold. SELECT @t := now(); SELECT user_name, user_registration, user_editcount FROM user WHERE (user_registration IS NULL OR user_registration < DATE_FORMAT(DATE_SUB(@t, INTERVAL 30 DAY), '%Y%m%d%H%i%s')) AND -- select for users with 30 days or more since registered AND user_editcount >= 500 AND -- more than 500 edits user_id NOT IN (SELECT ug_user FROM user_groups WHERE ug_group = 'bot') AND -- excluding bots user_name NOT IN ('CommonsDelinker', 'Xqbot') -- excluding non-flagged bots ORDER BY user_name ;
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...