SQL
x
SELECT article.page_title, article.page_len
FROM page AS article
join page AS talkpage on talkpage.page_title=article.page_title AND talkpage.page_namespace=1
join categorylinks as articleC on articleC.cl_from=talkpage.page_id
WHERE article.page_is_redirect=0
AND article.page_namespace=0
and articleC.cl_to="Good_article_nominees"
order by article.page_len
limit 20;
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.