SQL
AخA
SELECT
P.page_title,
FROM page P
WHERE P.page_namespace = 4
AND P.page_title LIKE '%/%'
AND P.page_is_redirect = 0
AND NOT EXISTS (SELECT
1
FROM templatelinks JOIN linktarget ON tl_target_id = lt_id
WHERE lt_namespace = 4
AND lt_title = P.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.