This query is marked as a draft This query has been published by Train2104.

SQL

AخA
 
SELECT DISTINCT
  pg1.page_title
FROM page AS pg1
LEFT JOIN pagelinks
ON pl_from = pg1.page_id
WHERE pg1.page_namespace = 4
AND pg1.page_is_redirect = 0
AND pg1.page_title NOT LIKE "%/%"
AND (SELECT
       COUNT(*)
     FROM page AS pg2
     LEFT JOIN pagelinks AS pltmp
     ON pg2.page_id = pltmp.pl_from
     WHERE pltmp.pl_title = pg1.page_title
     AND pltmp.pl_namespace = pg1.page_namespace
     AND pg2.page_namespace = 4) = 0
LIMIT 1000;
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.

Checking query status...