SQL
AخA
SELECT page_title, page_is_redirect
FROM page
WHERE
namespace = 10
AND page_title LIKE "%im"
/* This will only work if the above is efficient. I suspect it may not be. */
/* USE enwiki_p;
SELECT
rev_timestamp,
page_title,
page_is_redirect
FROM revision
INNER JOIN page ON page_id = rev_page
WHERE
namespace = 10
AND NOT page_is_redirect
AND page_title LIKE "%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.