You are viewing a single comment's thread. Return to all comments →
With recursive increase as(
Select 1 as base
union all
select base+1 as base from increase where (base)<40 )
select LPAD('',base, '* ') from increase where mod(base,2)=0;
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
With recursive increase as(
Select 1 as base
union all
select base+1 as base from increase where (base)<40 )
select LPAD('',base, '* ') from increase where mod(base,2)=0;