You are viewing a single comment's thread. Return to all comments →
what's wrong with this SQL query output coming correct but use case failed. declare @countercheck int; set @countercheck=20; while(@countercheck>0) begin select REPLICATE('*',@countercheck) set @countercheck=@countercheck-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 →
what's wrong with this SQL query output coming correct but use case failed. declare @countercheck int; set @countercheck=20; while(@countercheck>0) begin select REPLICATE('*',@countercheck) set @countercheck=@countercheck-1; end