SQL
AخA
USE enwiki_p;
SELECT
rev_timestamp,
page_title
FROM revision
INNER JOIN page ON page_id = rev_page
WHERE
page_namespace = 1
AND page_title LIKE "%/GA_"
GROUP BY rev_page
LIMIT 100 /* Necessary for now. I have no idea why this is so slow; probably the "LIKE" comparison. */
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.