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

SQL

AخA
 
SELECT p.page_title, COUNT(el.el_id)
FROM page p
INNER JOIN externallinks el ON p.page_id = el.el_from
WHERE p.page_namespace = 0
AND p.page_id IN (
  SELECT cl.cl_from FROM
  enwiki_p.categorylinks cl
  WHERE cl.cl_to = 'Living_people'
)
GROUP BY p.page_title
ORDER BY COUNT(el.el_id) ASC
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.

Checking query status...