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

SQL

x
 
use enwiki_p;
SELECT *
FROM recentchanges
WHERE rc_cur_id NOT IN
(
  SELECT pp_page
  FROM page_props
  WHERE pp_page IN 
      (
        SELECT rc_cur_id
        FROM recentchanges
        WHERE rc_new = 1 AND rc_namespace = 0
      )
) AND rc_new = 1 AND rc_namespace = 0
limit 1000;
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...