This query is marked as a draft This query has been published by Sridhar G.

SQL

x
 
SELECT 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
AND page_namespace = 0  -- Only main namespace
ORDER BY rc_timestamp DESC
LIMIT 100;
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.

Checking query status...