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

SQL

AخA
 
Select
  user_name,
  user_registration
from
  user
where
  user_registration < 20181028000000
  AND user_id not in (
    select
      ipb_user
    from
      ipblocks
    where
      ipb_user = user_id
  )
  AND user_id IN (
    select
      rev_user
    from
      revision_userindex
      join page on page_id = rev_page
    where
      rev_user = user_id
      AND page_namespace = 0
    having
      count(rev_id) > 149
  )
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...