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

SQL

x
 
WITH short_desc_pages AS (
    SELECT DISTINCT tl_from
    FROM templatelinks
    WHERE tl_target_id = 137
),
template_ids_generating_short_desc AS (
    SELECT DISTINCT tl_from
    FROM templatelinks
    WHERE tl_target_id IN (65131,93623)
),
pages_without_short_desc_template AS (
    SELECT tl_from
    FROM template_ids_generating_short_desc
    WHERE tl_from NOT IN (SELECT tl_from FROM short_desc_pages)
)
SELECT page_title
FROM page
WHERE page_id IN (SELECT tl_from FROM pages_without_short_desc_template)
AND page_namespace = 0;
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...