<div dir="ltr"><div class="gmail_default" style="font-family:tahoma,sans-serif">I am trying to find a list of those categories on EN WP that are highly used (more than 100 subpages or subcats) but don't have a counterpart in FA WP. The query I used is shown below and also on <a href="https://quarry.wmflabs.org/query/7943">https://quarry.wmflabs.org/query/7943</a> and is extremely slow.<br><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">Any thoughts on how to make it more efficient?<br></div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br><span style="font-family:monospace,monospace">select page_title, ll_title, count(cl_to) as CNT<br>from page<br>left join langlinks<br>on ll_from = page_id<br>and ll_lang = 'fa'<br>join categorylinks<br>on page_title = cl_to<br>where page_namespace = 14<br>and ll_from is null<br>group by cl_to, ll_title<br>having CNT > 100<br>order by CNT desc;<br><br></span><br></div></div>