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
Aram
.
Toggle Highlighting
SQL
USE ckbwiki_p; SELECT user_name, user_registration, user_editcount, MAX(rev_timestamp) AS last_edit_date FROM user JOIN revision ON user_id = rev_user WHERE user_editcount > 1000 -- Adjust the edit count threshold as needed AND user_registration <= DATE_FORMAT(DATE_SUB(NOW(), INTERVAL 6 MONTH), "%Y%m%d%H%i%S") AND user_name NOT LIKE '%bot%' -- Exclude bot users GROUP BY user_name, user_registration, user_editcount ORDER BY user_editcount DESC LIMIT 100;
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...