SQL
AخA
USE enwikivoyage_p;
SELECT p1.page_namespace, p1.page_title
FROM redirect
INNER JOIN page p1
ON p1.page_id = rd_from
WHERE rd_interwiki = ""
AND rd_namespace >= 0
AND NOT EXISTS (
SELECT *
FROM page p2
WHERE p2.page_namespace = rd_namespace
AND p2.page_title = rd_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.