Fork of Unreviewed BLPs by FoBe
This query is marked as a draft This query has been published by Blua lago.

SQL

x
 
WITH article AS (
  SELECT *
  FROM page
  JOIN categorylinks ON page_id = cl_from AND cl_to = "Élő_személyek"
  WHERE page_namespace = 0
  AND page_is_redirect = 0
)
nincs_Citation_Template AS (
    SELECT DISTINCT(page_title), page_len
    FROM article
    JOIN templatelinks ON page_id = tl_from 
    JOIN linktarget ON lt_id = tl_target_id AND lt_title = "Cite web"
)
          
    
SELECT * FROM nincs_Citation_Template
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...