This is a follow-up to my previous question (Thanks for the answer, BTW!)
If I have two loops:
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
...how can I exit from the inner loop and continue the outer (see comment)?