SQL
x
use ukwiki_p;
select CONCAT('[[',
REPLACE(page_title, '_', ' '), -- замінюємо у назві '_' на ' '
']]', ' (', page_len, ')') from page
where page_len < 592 and page_namespace = 0 and page_is_redirect = 0
and not exists (select 1 from categorylinks where cl_from = page_id and
cl_to = "Всі_сторінки_неоднозначності" or
cl_to = "Вікіпедія:М'які_перенаправлення")
order by page_len 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.