You are viewing a single comment's thread. Return to all comments →
MS SQL Server
DECLARE @i int = 0 WHILE @i <= 20 BEGIN SELECT REPLICATE("* ", 20 - @i) SET @i = @i + 1 END
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 1
You are viewing a single comment's thread. Return to all comments →
MS SQL Server