You are viewing a single comment's thread. Return to all comments →
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
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 RECURSIVE numbers as ( select 20 as n union all select n-1 from numbers where n > 1 )
select REPEAT('*',n) as stars from numbers