This query is marked as a draft This query has been published by ערן.

SQL

x
 
use hewiki_p;
select page_title,page_len ,count(*) as ImageCount
from page 
inner join imagelinks on il_from=page_id 
where page_len>25000  # limit to long pages of length >25K
and page_namespace=0  # limit to main namespace
group by page_id 
order by count(*) desc; # order the list by number of images
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...