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

AخA
 
SELECT page_title
from (
         SELECT page_title,
                (SELECT COUNT(*)
                 FROM revision
                 WHERE rev_page = page_id
                   AND rev_minor_edit = 0
                 LIMIT 10) AS count_edits
         FROM page
                  JOIN revision on rev_page = page_id and rev_parent_id = 0
                  LEFT JOIN page_props ON pp_page = page_id AND pp_propname = 'disambiguation'
         WHERE page_namespace = 0
           AND page_is_redirect = 0
           AND pp_propname IS NULL
           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...