SQL
x
SELECT COUNT(*) AS "சுற்றுக் காவல் செய்யப்படாத புதிய கட்டுரைகள்"
FROM page
LEFT JOIN recentchanges ON page.page_id = recentchanges.rc_cur_id
WHERE page.page_namespace = 0 -- Only main namespace
AND page.page_is_redirect = 0 -- Exclude redirects
AND recentchanges.rc_patrolled IS NULL; -- Unpatrolled pages
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.