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
Bdijkstra
.
Query breakdown: - inner 2 queries (t1 & t2): find recently changed items with labels and aliases and their languages - middle query (t3): find items that use the same text in the same language as both its label and as an alias - outer query: lookup the texts themselves and the language codes and group them by item ID Takes ½-2 hours w/o recentchanges, and ½-1 hours with.
Toggle Highlighting
SQL
SELECT CONCAT('Q', wbit_item_id) AS `item ID`, GROUP_CONCAT(DISTINCT wbxl_language SEPARATOR ', ') AS lang, GROUP_CONCAT(DISTINCT wbx_text SEPARATOR ', ') AS text FROM (SELECT t1.wbit_item_id AS wbit_item_id, t1.wbtl_text_in_lang_id AS wbtl_text_in_lang_id FROM (SELECT wbit_item_id, wbtl_text_in_lang_id FROM wbt_item_terms, wbt_term_in_lang WHERE wbit_term_in_lang_id=wbtl_id AND wbtl_type_id=(SELECT wby_id FROM wbt_type WHERE wby_name='label') LIMIT 10000) t1, (SELECT wbit_item_id, wbtl_text_in_lang_id FROM wbt_item_terms, wbt_term_in_lang WHERE wbit_term_in_lang_id=wbtl_id AND wbtl_type_id=(SELECT wby_id FROM wbt_type WHERE wby_name='alias') LIMIT 10000) t2 WHERE t1.wbit_item_id=t2.wbit_item_id AND t1.wbtl_text_in_lang_id=t2.wbtl_text_in_lang_id LIMIT 10000) t3, wbt_text_in_lang, wbt_text WHERE wbtl_text_in_lang_id=wbxl_id AND wbxl_text_id=wbx_id GROUP BY wbit_item_id
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...