Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
Fork of
Quantidade de categorias com poucas páginas
by
Danilo.mac
This query is marked as a draft
This query has been published
by
Danilo.mac
.
Quantas categorias estão vazias (ZERO), quantas têm apenas uma página (UMA_PÁG), quantas têm entre 2 e 5 (ENTRE2E5), e assim por diante. Os redirecionamentos de categoria foram excluídos e as categorias com nome começados por "!" também.
Toggle Highlighting
SQL
SELECT SUM(cat_pages = 0) ZERO, SUM(cat_pages = 1) UMA_PÁG, SUM(cat_pages BETWEEN 2 AND 5) ENTRE2E5, SUM(cat_pages BETWEEN 6 AND 10) ENTRE6E10, SUM(cat_pages BETWEEN 11 AND 20) ENTRE11E20, SUM(cat_pages > 20) MAIORQUE20 FROM category WHERE cat_title NOT IN ( SELECT page_title FROM page INNER JOIN categorylinks ON cl_from = page_id AND cl_to = '!Redirecionamentos_de_categorias' WHERE page_namespace = 14 ) AND cat_title NOT LIKE '!%';
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...