SQL
AخA
USE hewiki_p;
SELECT page1.page_title, templatelinks.tl_namespace, templatelinks.tl_title
FROM page AS page1 JOIN templatelinks ON page1.page_id = templatelinks.tl_from
WHERE page1.page_namespace = 0
AND NOT EXISTS (
SELECT *
FROM page AS page2
WHERE templatelinks.tl_namespace = page2.page_namespace
AND templatelinks.tl_title = page2.page_title
)
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.