• + 0 comments

    WITH RECURSIVE Stars AS (SELECT 20 AS S UNION ALL SELECT S-1 FROM Stars WHERE S >1) SELECT REPEAT('* ',S) FROM Stars;