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

SQL

AخA
 
use hrwiki_p;
SELECT blocker.user_name,ipb_address,ipb_timestamp,ipb_expiry,comment_text FROM ipblocks
  INNER JOIN actor ON actor.actor_id = ipblocks.ipb_by_actor
  INNER JOIN user blocker ON actor.actor_user = blocker.user_id
  INNER JOIN user blockee ON ipblocks.ipb_user = blockee.user_id
  INNER JOIN comment on comment.comment_id = ipblocks.ipb_reason_id
  WHERE (blocker.user_name="Kubura" OR blocker.user_name="SpeedyGonsales" OR blocker.user_name="Zeljko" OR blocker.user_name="Roberta F.") AND
    blockee.user_editcount > 10
  ORDER BY ipb_timestamp DESC
;
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...