alter procedure sp_WhileLoop
as
begin
declare @count int
set @count=1
while(@count<=5)
begin
print @count
if(@count=3)
begin
break
end
set @count=@count+1
end
end
output:
1
2
3
alter procedure sp_WhileLoop
as
begin
declare @count int
set @count=1
while(@count<=5)
begin
print @count
if(@count=3)
begin
break
end
set @count=@count+1
end
end
output:
Post a Comment
Please give your valuable feedback on this post. You can submit any ASP.NET article here. We will post that article in this website by your name.