在 SQL Server 2012 存储过程中,我有几个嵌套结构。我想突破其中的一层。
我认为 msdn https://msdn.microsoft.com/en-CA/library/ms181271.aspx中对 BREAK 的描述站在我这边。但是我在通过调试单步运行它时遇到了一些奇怪的行为。我说奇怪是因为它不一致。有时它会逃到我期望的层。有时它会跳过几个。
WHILE ... BEGIN
stuff1
IF...BEGIN
stuff2
WHILE ... BEGIN
stuff3
IF .... BEGIN
stuff4
IF @NumberRecords=0 BREAK
stuff5
END
--stuff6
if @NumberRecords=0 and @loopBOMRowCount=@ResultsSOloopstart-1 break
--on the last occasion I observed, @loopBOMRowCount was 6 and @ResultsSOloopstart 71 and it never highlighted this section, either way
SET @loopBOMRowCount = @loopBOMRowCount + 1
END
stuff7 --nothing actually here
END
--stuff8
SET @periodloopcount=@periodloopcount+1
--this is where it ended up highlighting on that last occasion
END
stuff9
所以如果 NumberRecords=0,那么下一个操作应该是 stuff6 的 if,对吧?即使 stuff4 包括从 EXEC 调用到存储过程的 INSERT INTO 表?没有什么可以将堆栈从其层中混淆?
是的,我意识到那是丑陋的 SQL。大多数指令是对两个临时表的编辑,我避免将它们来回传递给本来会清理代码的存储过程。
编辑
我设法通过在我想首先突破的内部 IF 周围添加一个虚拟 WHILE 循环来按照我想要的方式进行路由。但我真的很想知道我是如何误解 msdn 信息的。似乎 BREAK 应该脱离 IF,只要它有一个 END 语句。
退出WHILE 语句中的最内层循环或 WHILE 循环内的 IF...ELSE 语句。出现在 END 关键字之后的任何语句,标记循环的结束,都会被执行。