This query is marked as a draft This query has been published by SQL.

SQL

AخA
 
SELECT page_title, 
       Count(rev_id) 
FROM   categorylinks 
       JOIN page 
         ON page_id = cl_from 
       JOIN revision_userindex 
         ON rev_page = page_id 
WHERE  cl_to = "Requests_for_unblock" 
       AND ( rev_timestamp >= 20190329000000 
             AND rev_timestamp <= 20200329000000 ) 
       AND cl_type = "page" 
GROUP  BY page_title; 
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...