Fork of 最短的極高/高重要度電子遊戲條目 (zhwiki) by Lopullinen
This query is marked as a draft This query has been published by Ericliu1912.

SQL

x
 
SELECT
  CONCAT('[[:', REPLACE(page.page_title, "_", " "), "]]") AS 條目,
  page.page_len AS 長度
FROM
  page AS temp
  JOIN categorylinks ON (cl_to = "Top-importance physics articles" OR cl_to = "High-importance physics articles")
  AND cl_type = 'page'
  AND cl_from = temp.page_id
  JOIN page ON page.page_title = temp.page_title
  AND page.page_namespace = temp.page_namespace - 1
ORDER BY
  page.page_len ASC
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...