SQL
AخA
SELECT page_title AS 'redirecting template', rd_namespace AS 'redirect to namespace', rd_title AS 'redirect to title'
FROM templatelinks
LEFT JOIN page
ON page_id = tl_from
LEFT JOIN redirect
ON rd_from = tl_from
WHERE tl_namespace = 10
AND tl_title = 'R_from_misspelling'
AND tl_from_namespace = 10
ORDER BY rd_title ASC;
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.