SQL
AخA
SELECT DISTINCT
p.page_title,
p.page_len
FROM
page p
JOIN
categorylinks cl ON cl.cl_from = p.page_id
LEFT JOIN
langlinks ll ON p.page_id = ll.ll_from AND ll.ll_lang = 'id'
WHERE
cl.cl_to = 'Top-priority_mathematics_articles'
AND p.page_namespace = 0
AND ll.ll_from IS NULL;
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.