SQL
AخA
USE arwiki_p;
SELECT CONCAT('# [[:تصنيف:',cl_to,']]') AS cl_to, COUNT(*) AS count_cl_to
FROM page, categorylinks
WHERE page_id = cl_from
AND page_namespace = 14
AND cl_to Rlike 'بذرة_عن_(.*)'
#AND page_id not in (SELECT tl_from FROM templatelinks WHERE tl_from = page_id and tl_title = 'تصنيف_مخفي')
GROUP BY cl_to
ORDER BY count_cl_to DESC, cl_to ASC
#LIMIT 10
;
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.