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