SQL
x
use tewiki_p;
select
p.page_title,
p.page_len,
-- concat(mid(rev_timestamp,1,4),"-",mid(rev_timestamp,5,2),"-",mid(rev_timestamp,7,2)) as creation_date
from
page p
where page_id in (select cl_from from categorylinks where cl_to like ('%మొలక%'))
and p.page_len > 2149
order by page_len desc
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.