• + 1 comment

    with RECURSIVE numbers as ( select 20 as n union all select n-1 from numbers where n > 1 )

    select REPEAT('*',n) as stars from numbers