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

SQL

AخA
 
USE dewiki_p;
SELECT p.page_title, COUNT(pl.pl_from)
FROM pagelinks pl
INNER JOIN page p ON pl.pl_from = p.page_id
INNER JOIN page_props pp ON (pp.pp_page = p.page_id AND pp.pp_propname = 'disambiguation')
WHERE pl.pl_namespace = 0
AND pl.pl_from_namespace = 0
GROUP BY p.page_title
ORDER BY COUNT(pl.pl_from) DESC
LIMIT 200
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...