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

SQL

AخA
 
USE dewiki_p;
SELECT CONCAT('[[', REPLACE(page_title, '_', ' '), ']]') AS Titel
  FROM page, templatelinks, pagelinks
 WHERE page_title LIKE "%(%)"
   AND page_namespace = 0
   AND page_id = tl_from
   AND page_namespace = tl_from_namespace
   AND tl_title = "Begriffsklärungshinweis"
   AND tl_namespace = 10
   AND page_id = pl_from
   AND page_namespace = pl_from_namespace
   AND pl_title LIKE "%(%)%(%)"
   AND pl_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...