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