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
UOzurumba (WMF)
.
Toggle Highlighting
SQL
SELECT DISTINCT p.page_title, COUNT(DISTINCT ll.ll_lang) AS translation_count FROM page p JOIN langlinks ll ON p.page_id = ll.ll_from JOIN categorylinks cl ON p.page_id = cl.cl_from JOIN change_tag ct ON p.page_id = ct.ct_rev_id JOIN change_tag_def ctd ON ct.ct_tag_id = ctd.ctd_id WHERE p.page_namespace = 0 -- Main namespace (articles) AND ctd.ctd_name = 'contenttranslation' AND cl.cl_to LIKE '%health%' -- Categories related to health GROUP BY p.page_title HAVING translation_count >= 10 ORDER BY translation_count DESC LIMIT 100; -- Limit to first 100 results
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...