Fork of Articles created before 20040920 with <10 non-minor edits by SD0001
This query is marked as a draft This query has been published by SD0001.

SQL

x
 
SELECT page_title
from (
         SELECT page_title,
                (SELECT COUNT(*)
                 FROM revision
                 WHERE page_id = rev_page
                   AND rev_minor_edit = 0
                 LIMIT 10) AS count_edits
         FROM page
                  JOIN revision on rev_page = page_id and rev_parent_id = 0
         WHERE page_namespace = 0
           AND page_is_redirect = 0
           AND rev_timestamp < '20040920000000'
     ) as sub1
WHERE count_edits < 10
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...