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

SQL

x
 
-- Danh sách các bài từ nhỏ đến lớn trong không gian chính.
-- Không tính trang đổi hướng
SET num_results = 100;
USE viwiki_p;
SELECT page_namespace AS không_gian,
  page_title AS tựa, 
  page_len AS kích_cỡ 
FROM page
WHERE page_len > 0 
  AND page_namespace = 0
ORDER BY page_len ASC 
LIMIT num_results;
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...