SQL
AخA
/* Doesn't properly account for page moves; ideally, it would check the move log. */
USE enwiki_p;
SELECT
rev_timestamp,
page_title,
page_is_redirect
FROM revision
INNER JOIN page ON page_id = rev_page
WHERE
page_namespace = 10
AND page_title LIKE "Uw%im"
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.