SQL
AخA
USE commonswiki_p;
SELECT page_title
FROM categorylinks c1
INNER JOIN page
ON page_id = c1.cl_from
WHERE c1.cl_to = "Aircraft_by_registration"
AND (
SELECT COUNT(cl_to)
FROM categorylinks c2
WHERE c2.cl_from = page_id
) < 3
;
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.