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
Aram
.
Toggle Highlighting
SQL
SELECT DISTINCT en_cats.page_title AS en_category, COUNT(*) AS num_languages FROM categorylinks AS en_cats -- Join with langlinks to get the corresponding category in other languages JOIN langlinks AS ll ON en_cats.cl_from = ll.ll_from AND ll.ll_lang != 'ckb' -- Exclude ckbwiki WHERE en_cats.cl_to = 'Hidden_categories' -- Exclude "Category:Hidden_categories" on enwiki AND en_cats.page_namespace = 14 -- Check only the Category namespace GROUP BY en_cats.page_title HAVING COUNT(*) > 1 -- Categories available in more than one language ORDER BY num_languages 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...