SQL
AخA
SELECT
CONVERT(p1.page_title USING utf8),
COUNT(*)
FROM page AS p1
JOIN categorylinks
ON p1.page_id = cl_from
JOIN pagelinks
ON p1.page_title = pl_title AND pl_namespace = 0
JOIN page AS p2
ON pl_from = p2.page_id AND p2.page_namespace = 0
WHERE p1.page_namespace = 0
AND p1.page_is_redirect = 1
AND cl_to = 'Redirects_from_miscapitalisations'
GROUP BY 1
LIMIT 1000;
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.
Query status: complete
Executed in 2.57 seconds as of Fri, 08 Oct 2021 21:25:34 UTC.