You are viewing a single comment's thread. Return to all comments →
WITH RECURSIVE pattern(n) AS ( SELECT 20 -- start from 20 UNION ALL SELECT n - 1 FROM pattern WHERE n > 1 -- decrease by one for each row ) SELECT REPEAT('* ', n) -- don't forget space FROM pattern;
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 →