SQL
AخA
select lt_title from templatelinks
join linktarget on lt_id = tl_target_id and lt_namespace = 10
join page on page_id = tl_from and page_namespace = 0
where page_id in (
select cl_from from categorylinks
where cl_to = 'All_disambiguation_pages' and cl_type = 'page'
)
group by tl_target_id
-- order by links desc
having count(page_id) < 2
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.