SQL
AخA
USE commonswiki_p;
SELECT page.page_title, page2.page_title, CONCAT("Q", ips_item_id)
FROM page
LEFT JOIN wikidatawiki_p.wb_items_per_site
ON ips_site_page=CONCAT("Category:", REPLACE(page_title, "_", " "))
AND ips_site_id="commonswiki"
LEFT JOIN categorylinks
ON cl_from=page_id
AND cl_to=REPLACE(page_title, "Interior_of_", "")
JOIN page AS page2
ON page2.page=cl_from
WHERE
page_namespace=14 AND
page_title LIKE "Interior_of_%"
LIMIT 10;
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.