You are viewing a single comment's thread. Return to all comments →
with recursive cte as( select repeat('* ',20) as p, 20 as n union all select repeat('* ',n-1),n-1 from cte where n>1) select p from cte;
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 →