SQL
AخA
select
p2.page_title,
(SELECT
count(*)
FROM page as p1
JOIN pagelinks
ON pl_from = p1.page_id
WHERE pl_namespace = 0
AND pl_title = p2.page_title) as count_
from page as p2
where p2.page_namespace = 0
and lower(cast(p2.page_title as char)) rlike "\bair\b"
limit 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.