You are viewing a single comment's thread. Return to all comments →
WITH RECURSIVE Star AS ( SELECT 1 AS RowNums, CAST(REPEAT('* ', 1) AS CHAR(2000)) AS Patterns UNION ALL SELECT RowNums + 1, CAST(REPEAT('* ', rowNums + 1) AS CHAR(2000)) FROM Star WHERE RowNums < 20 ) SELECT Patterns FROM Star;
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 →