这是对my previous question的跟进(感谢答案,顺便说一下!)
如果我有两个循环:
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
...如何退出内循环并继续外部(参见注释)?
答案 0 :(得分:2)
我认为你正在寻找BREAK
在线图书是TSQL的绝佳资源
答案 1 :(得分:1)