SQL
x
SELECT
source.page_title AS title_source
target.page_title AS title_target
cl.cl_to
FROM
page AS source
INNER JOIN page AS talk ON source.page_title = talk.page_title
INNER JOIN categorylinks AS cl ON talk.page_id = cl.cl_from
INNER JOIN pagelinks AS pl ON source.page_title = pl.pl_from
INNER JOIN page AS target ON pl.pl_target_id = target.page_id
WHERE
source.page_namespace = 0
AND talk.page_namespace = 1
AND target.page_namespace = 0
AND source.page_is_redirect = 0
AND target.page_is_redirect = 0
AND cl.cl_to IN (
'Top-priority_mathematics_articles',
'High-priority_mathematics_articles',
'Mid-priority_mathematics_articles',
'Low-priority_mathematics_articles',
'NA-priority_mathematics_articles',
'Unknown-priority_mathematics_articles')
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.