You are viewing a single comment's thread. Return to all 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
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 1
You are viewing a single comment's thread. Return to all 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