这是我上一个问题的后续(谢谢你的回答,顺便说一句!)
如果我有两个循环:
while @@fetch_status=0
begin
set y=y+1
set x=0
while @@fetch_status=0
begin
x=y+1
if y = 5
'exit the second do while and back to the first do while --> y=y+1
end
end
...我怎样才能退出内循环并继续外循环(见评论)?