SQL
x
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 10000
/* Necessary for now. I have no idea why this is so slow; probably the "LIKE" comparison. */
/* Grouped by page:
6.22 seconds for 100 rows
13.09 seconds for 1000 rows
*/
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.