SQL
x
use sqwiki_p;
select replace(page_title, '_', ' ') as Articles, Length
from page
where page_namespace = 0 -- Namespace 0 is for articles
and page_len < 1000 -- Find pages with length less than 1000 bytes
group by page_title, page_len
order by page_len;
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.