SQL
x
SET @basecat = 'Food and drink';
SET max_recursive_iterations = 3;
SET @basecat = REPLACE(@basecat, ' ', '_');
WITH RECURSIVE deepcat (subcat) AS
(
SELECT @basecat
UNION DISTINCT
SELECT page_title
FROM categorylinks
JOIN page ON page_id = cl_from
JOIN deepcat ON cl_to = subcat
WHERE page_namespace = 14
)
SELECT DISTINCT REPLACE(page_title, '_', ' ') AS title,
CAST(rev_timestamp AS DATETIME) AS 'last edit timestamp'
FROM page
JOIN categorylinks ON cl_from = page_id
JOIN deepcat ON cl_to = subcat
JOIN revision ON rev_id = page_latest
WHERE page_namespace = 0
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.