Fork of Number of pages by category by Jagwar
This query is marked as a draft This query has been published by Tom.Reding.

SQL

AخA
 
select
    cat_title as category_name,
    cat_pages as pages
from 
    category
where 
    cat_pages >= 1000 and
    cat_title not like '%Articles%' and
    cat_title not like '%_articles%' and
    cat_title not like '%_dmy_%' and
    cat_title not like '%_mdy_%' and
    cat_title not like '%Redirect%' and
    cat_title not like '%Wikipedia%' and
    cat_title not like '%WikiProject%' and
    cat_title not like '%_births%' and
    cat_title not like '%_deaths%'
order by 
    pages 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...