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

SQL

x
 
set @source_id = 5304416; # Wikiprojekt:Malarstwo/Ostatnie zmiany w artykułach z zakresu sztuk plastycznych
select
    replace(page_title, "_", " ") as title
from page
    inner join pagelinks on pl_title = page_title and pl_namespace = page_namespace
    inner join templatelinks on tl_from = page_id
    inner join linktarget on lt_id = tl_target_id
where
    pl_from = @source_id and
    page_namespace = 0 and
    lt_title = "Dopracować" and
    lt_namespace = 10
;
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...