Fork of sp2.1 by Smallbones
This query is marked as a draft This query has been published by Smallbones.

SQL

AخA
 
  # Simplified query to focus on blocked editors.
  # The page_id list can be manually compiled by looking at page id under "page information" in the Wiki web interface,
  # or by running Quarry query #62940 with a list of titles. 
  
select page_title as 'page title', user_name, comment_text as 'block reason'
from page, revision, ipblocks, user, actor, comment
where page_id=rev_page
  and actor_id=rev_actor # link keys
  and actor_user=user_id
  and ipb_user=user_id # user is blocked
  and ipb_reason_id=comment_id # link keys
  and page_id in 
(16597487,842695,523937)
group by page_title,user_name
order by user_name,page_title
limit 999
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...