SQL
AخA
USE commonswiki_p;
SELECT * FROM page
JOIN categorylinks ON page_id = cl_from
LEFT JOIN page_restrictions ON page_id = pr_page
WHERE cl_to = 'Language_link_templates'
AND EXISTS (
SELECT 1
FROM templatelinks
WHERE tl_namespace = page_namespace
AND tl_title = page_title
)
AND page_is_redirect = 1
LIMIT 100
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.