You are viewing a single comment's thread. Return to all comments →
declare @pointer int = 20, @counter int = 1
while (@counter <= @pointer) begin select(replicate('* ', @counter)) set @counter = @counter+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 →
declare @pointer int = 20, @counter int = 1
while (@counter <= @pointer) begin select(replicate('* ', @counter)) set @counter = @counter+1 end