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
Zar2gar1
.
This query simply finds the pages with the most language links and provides a count. Because of how the database indices are set up, we don't attempt to join with the page table at all.
Toggle Highlighting
SQL
# Set a query timeout for politeness SET STATEMENT max_statement_time = 300 FOR # Indices don't allow for an efficient join ... # ... so we'll just grab page IDs for now SELECT ll_from AS "Page ID", COUNT(*) AS "Number of Translations" FROM langlinks # Ordering on a COUNT should be OK GROUP BY 1 ORDER BY 2 DESC # TESTING: Start with a small limit to gauge time LIMIT 100000;
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...