SQL
x
USE trwiki_p;
SELECT cl_to, count(*)
from flaggedpage_pending join categorylinks on cl_from = fpp_page_id
join page pc on pc.page_title = cl_to
where pc.page_namespace = 14 and pc.page_id not in (select pp_page from page_props where pp_propname in ("hiddencat") )
group by 1
having count(*) > 50
order by 2 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.