This query is marked as a draft This query has been published by IKhitron.

SQL

x
 
/*set @page = 10069356;
select page_title from page
where (page_title = d
       or page_title like concat(d, '_(%)'))
and not page_namespace;
select a, locate('(', a) as 'c', if(locate('(', a) > 0, substring(a,1,locate('(', a)-2), a) as d from
(select pl_title as 'a' from pagelinks
where pl_from = @page
and not pl_namespace
union
select page_title as 'a' from page
where page_id in
(select tl_from from templatelinks
 where tl_target_id = 21855)
 and not page_namespace) t0
order by a*/
/*select page_title from page
where page_title in
(select if(locate('(', a) > 0, substring(a,1,locate('(', a)-2), a) as d from
(select pl_title as 'a' from pagelinks
where pl_from = @page
and not pl_namespace
union
select page_title as 'a' from page
where page_id in
(select tl_from from templatelinks
 where tl_target_id = 21855)
 and not page_namespace) t0
 order by a)
and not page_namespace
order by page_title*/
select page_title from
(select distinct(if(locate('(', a) > 0, substring(a,1,locate('(', a)-2), a)) as d from
(select pl_title as 'a' from pagelinks
where pl_from = @page
and not pl_namespace
union
select page_title as 'a' from page
where page_id in
(select tl_from from templatelinks
 where tl_target_id = 21855)
 and not page_namespace) t0
 order by a) t1
join
(select page_title as 'c'
 where not page_namespace
 and page_title like '%_(%)') t3
on c like concat(d, '_(%)')
and not page_namespace
order by 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.

Checking query status...