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.