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

SQL

AخA
 
use enwiki_p;
select page_title as English, ll_title as Simple
from langlinks
join page
on ll_from = page_id
join categorylinks
on ll_from = cl_from
where ll_lang = "simple"
and page_title in
(
  select page_title
  from page
  join categorylinks
  on cl_from = page_id
  where cl_to = "People_with_multiple_sclerosis"
)
and cl_to != "People_with_multiple_sclerosis"
order by English asc;
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...