SQL
AخA
use dewiki_p;
SELECT pl_title, COUNT(*)
from page LEFT JOIN pagelinks
ON page_namespace = pl_namespace and page_title = pl_title
WHERE page_namespace = 10
GROUP BY pl_title
HAVING COUNT(*) > 1
ORDER By COUNT(*) DESC
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.