Fork of Pages in some books on bnwikisource by length by Mahir256
This query is marked as a draft This query has been published by Mahir256.

SQL

x
 
use enwikisource_p;
select current_date;
select concat("Page:", page_title), page_len
from page
join page_props
on pp_page = page_id
where pp_propname = 'proofread_page_quality_level'
and pp_value = 1
and page_namespace = 104
and   (page_title like replace('Oxford Book of English Verse 1250-1900.djvu%',' ','_')
    or page_title like replace('Speeches And Writings MKGandhi.djvu%',' ','_')
)
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.

Checking query status...