You are viewing a single comment's thread. Return to all comments →
In SQL Server
DECLARE @i AS INT = 1 WHILE @i <= 20 AND @i >= 1 BEGIN PRINT REPLICATE('* ', @i) SET @i = @i + 1 END
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 →
In SQL Server