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
MPGuy2824
.
Months where a reviewer crossed 30 reviews
Toggle Highlighting
SQL
SELECT actor_name AS `Reviewer`, year, month, count(*) as reviews FROM ( SELECT distinct log_actor, log_page, page_is_redirect, MONTH(log_timestamp) as month, YEAR(log_timestamp) as year FROM logging_userindex JOIN page ON page_title = log_title AND page_namespace = log_namespace AND ((log_type = "patrol" AND log_action = "patrol") OR (log_type = "pagetriage-curation" AND log_action in ("reviewed", "reviewed-article"))) AND log_namespace = 0 and YEAR(log_timestamp)>2021 ) logtemp JOIN actor ON actor_id = log_actor JOIN user ON actor_user = user_id and logtemp.page_is_redirect = 0 GROUP BY reviewer, year, month having reviews >= 30;
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...