SQL
x
USE trwiki_p;
/*select page_title, length(page_title)
, substring(page_title,1,length(page_title)/4) as i1
, substring(page_title,length(page_title)/4,length(page_title)/2) as i2
, substring(page_title,length(page_title)/2,length(page_title)*3/4) as i3
, substring(page_title,length(page_title)*3/4) as i4
*/
select page_id as id, lower(convert(page_title) using utf8) as ad
from page
where page_namespace = 6 and page_is_redirect = 0 and lower(convert( substring(page_title,1,1) using utf8)) in ("a","b","c")
;
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.