• + 0 comments

    My solution SQL SERVER:

    Declare @Count Tinyint = '20' WHILE @Count >= 1 begin print replicate('* ',@Count) Set @Count = @Count-1 end;