SQL
x
SELECT page_id,
page_title,
MIN(r.rev_timestamp) AS creation_timestamp
FROM page p
JOIN revision r ON r.rev_page = p.page_id
WHERE p.page_namespace = 0
AND p.page_is_redirect = 0
GROUP BY p.page_id
HAVING creation_timestamp > "20240101000000"
ORDER BY RAND()
LIMIT 10000;
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.