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
Tacsipacsi
.
A quick (under)estimation about the fraction of users who recently edited in huwiki but don’t have the right to vote. Compared to the actual policy (https://hu.wikipedia.org/wiki/Wikip%C3%A9dia:Szavaz%C3%A1s_(ir%C3%A1nyelv)#Szavaz%C3%A1sra_jogosultak), it underestimates the number of users without the right to vote by: * taking all edits into account, including deleted and non-mainspace ones; * not excluding bots; * not counting the number of days the user edited on; * not taking the registration date into account. Columns: * `many`: grouping, whether the users in the given group have had at least 200 edits since registration * `users`: number of users in the group who had any edit in the last 30 days
Toggle Highlighting
SQL
SELECT (user_editcount > 200) AS many, COUNT(DISTINCT user_id) AS users FROM recentchanges JOIN actor ON rc_actor = actor_id JOIN user ON user_id = actor_user WHERE rc_type IN (0, 1) GROUP BY many;
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...