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

SQL

AخA
 
use enwiki_p;
set 
  statement max_statement_time = 100 for 
select 
  u.user_id, 
  u.user_name, 
  u.user_registration, 
  u.user_editcount, 
  b.ipb_timestamp, 
  c.comment_text 
from 
  user u 
  join ipblocks b on u.user_id = b.ipb_user 
  join comment_ipblocks c on b.ipb_reason_id = c.comment_id 
where 
  u.user_id >= (select user_id from user where user_name = 'AndresHerutJaim') 
  and (
    lower(convert(c.comment_text using latin1)) like '%andresherutjaim%' 
    or lower(convert(c.comment_text using latin1)) like '%delotrooladoo%' 
    or convert(c.comment_text using utf8mb4) like '%יניב הורון%'
  ) 
order by 
  u.user_id 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...