SQL
x
SELECT page_namespace, page_title, rc_timestamp
FROM recentchanges
JOIN page ON rc_cur_id = page_id
WHERE rc_patrolled = 0
AND rc_type = 0 -- Only new pages
ORDER BY rc_timestamp DESC
LIMIT 500;
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.