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

SQL

AخA
 
SELECT rc_title AS "Category Name", COUNT(*) AS "Unpatrolled Count"
FROM recentchanges_userindex
WHERE rc_new = 1  -- Only new pages
    AND rc_namespace = 14  -- Only category namespace
    AND rc_patrolled = 0  -- Unpatrolled pages
GROUP BY rc_title
ORDER BY COUNT(*) DESC;
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...