• + 0 comments

    with nums as ( select 1 as num union all select num + 1 from nums where num + 1 <= 20)

    select replicate('* ', num) from nums order by num desc