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
Echodarkstar00
.
Toggle Highlighting
SQL
#Preliminary approach: return user edit counts, a field already tracked by wikis. #caveats: not accurate, for details refer to Manual:user table, user_editcount #time complexity: slow for large wikis/more users #includes bots #SELECT user_id, user_name, user_editcount FROM user #ORDER BY user_editcount DESC #LIMIT 10 #Inner join / Extracting all revisions made by all users that have made a revision in this wiki SELECT user.user_name, revision.rev_id FROM user INNER JOIN actor ON user.user_id = actor.actor_user INNER JOIN revision ON revision.rev_actor = actor.actor_id
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...