SQL
x
SELECT CONCAT('Draft:', page_title) AS title,
rev_timestamp
FROM page
JOIN revision ON rev_id = page_latest
WHERE page_namespace = 118 -- Draft
AND rev_timestamp <= DATE_SUB(NOW(), INTERVAL 5 MONTH)
AND page_is_redirect = 0
ORDER BY rev_timestamp ASC;
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.