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
Huji
.
Toggle Highlighting
SQL
use fawiki_p; select user_name, log_timestamp as acct_created, onefifty.cnt as article_edits, onehundred.cnt as recent_edits from user join logging on log_user = user_id and log_type = 'newusers' and log_action = 'create' -- creating main account and log_timestamp < '20160613000000' -- occured 3 or more months prior to election start date join ( select rev_user, count(*) cnt from revision join page on page_id = rev_page where page_namespace = 0 group by rev_user having count(*) >= 150 ) onefifty -- at least 150 edits in main namspace on user_id = onefifty.rev_user join ( select rev_user, count(*) cnt from revision join page on page_id = rev_page where page_namespace = 0 and rev_timestamp > '20160313000000' -- last 6 months leading to election start date group by rev_user having count(*) >= 100 ) onehundred -- at least 100 edits in the main namespace in the last six months leading to the election start date on user_id = onehundred.rev_user
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...