Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
ShadowCipher02
.
This query focuses on the categorisation of articles in Telugu Wikipedia and retrieves articles with the highest number of categories. It can be useful for identifying articles that are extensively categorised, providing insights into how topics are organised within the encyclopedia. You can adjust the LIMIT value to retrieve more or fewer results based on your interests.
Toggle Highlighting
SQL
SELECT page.page_title AS Article_Title, COUNT(cl_to) AS Category_Count FROM categorylinks JOIN page ON categorylinks.cl_from = page.page_id WHERE page.page_namespace = 0 -- Namespace 0 corresponds to articles GROUP BY page_title ORDER BY Category_Count 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
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...