これは私の前の質問のフォローアップです (答えてくれてありがとう、ところで!)
2 つのループがある場合:
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
...どうすれば内側のループを終了し、外側のループを続行できますか (コメントを参照)?