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