This query is marked as a draft This query has been published by Kekavigi.

SQL

x
 
SELECT
    page.page_id as page_id,
    page.page_title as title 
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
WHERE
    source.page_namespace = 0
    AND source.page_is_redirect = 0
    AND talk.page_namespace = 1
    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')
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.

Checking query status...