Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
Fork of
Active collaborated discussion pages (article,wikipedia ns)
by
Arjunaraoc
This query is marked as a draft
This query has been published
by
Arjunaraoc
.
Active collaborators on more than 2 discussion pages with atleast three distinct participants in year (excluding loggedin non bot, awb editors) in article talk and wikipedia talk space, which are generally more active than others.
Toggle Highlighting
SQL
Select user_name, COUNT(DISTINCT page_id) as num_pages from actor join revision on rev_actor=actor_id join page on revision.rev_page = page.page_id JOIN user ON user_id =actor_user Where LEFT(rev_timestamp,4)="2021" AND actor_user !=0 AND (page_namespace =1 OR page_namespace= 5) AND NOT (user_name LIKE '%AWB%' OR user_name LIKE '%Bot%' OR user_name LIKE'%bot%' OR user_name ='CommonsDelinker') AND page_id in ( SELECT page_id FROM revision JOIN page ON revision.rev_page = page.page_id JOIN actor on rev_actor=actor_id JOIN user ON user_id =actor_user Where LEFT(rev_timestamp,4)="2021" AND actor_user !=0 AND (page_namespace =1 OR page_namespace= 5) AND NOT (user_name LIKE '%AWB%' OR user_name LIKE '%Bot%' OR user_name LIKE'%bot%' OR user_name ='CommonsDelinker') GROUP BY page_namespace, page_title # atleast five revisions to eliminate, project additions, template removals, which are not real discussions HAVING COUNT(DISTINCT user_name) > 2 ) GROUP by user_name HAVING num_pages > 2 ORDER BY num_pages DESC, user_name ASC LIMIT 1000;
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...