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

SQL

x
 
select 
  concat("[[User:", page_title, "]]") page, 
  concat("{{userlinks|", user_name, "}}") editor, 
  concat("[https://en.wikipedia.org/w/index.php?diff=", rev_id, "&oldid=", rev_parent_id, " diff]" ) diff 
from 
  page 
  join revision on rev_id = page_latest 
  join user on user_id = rev_user 
where 
  page_namespace = 2 
  AND page_title != REPLACE(rev_user_text, " ", "_") 
  and user_editcount < 25 
  and user_registration > 20180115000000 
  and page_title NOT LIKE "%/%" 
  AND user_id not in (
    SELECT 
      ipb_user 
    from 
      ipblocks 
    where 
      ipb_user = user_id
  );
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...