SQL
x
USE itwiki_p;
SELECT DISTINCT
it_page.page_title itwiki_title,
en_page.page_title enwiki_title
FROM
enwiki_p.page en_page
INNER JOIN wikidatawiki_p.wb_items_per_site wdata
ON wdata.ips_site_id = 'enwiki'
AND wdata.ips_site_page = REPLACE(en_page.page_title, '_', ' '),
INNER JOIN page it_page
WHERE it_page.page_title = en_page.page_title
AND it_page.page_namespace = 0
AND it_page.page_is_redirect = 0
AND it_page.page_id NOT IN
(SELECT ll_from FROM langlinks);
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.