SQL
x
use arwiki_p;
select p1.page_title, p1.page_namespace from page p1
inner join categorylinks cl1
on cl1.cl_from = p1.page_id
inner join page p2
on p2.page_title = cl1.cl_to
where p1.page_namespace%2 = 1
and p1.page_is_redirect = 0
and p2.page_namespace = 14
and p2.page_is_redirect=0
and cl1.cl_to like "مواليد%" limit 10;
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.