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

SQL

AخA
 
SELECT
    p.page_id,
    p.page_title,
    MIN(r.rev_timestamp) AS creation_timestamp
FROM page p
INNER JOIN revision r
  ON r.rev_page = p.page_id
INNER JOIN page_props props_simpl
  ON props_simpl.pp_page = p.page_id
  AND props_simpl.pp_propname = 'varianttitle-zh-hans'
WHERE p.page_namespace = 0
  AND p.page_is_redirect = 0
GROUP BY p.page_id
ORDER BY RAND()
LIMIT 500;
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...