CTE 递归 The statement terminated. The maximum recursion 100 has been exhausted before statement completion.

The statement terminated. The maximum recursion 100 has been exhausted before statement completion.

解释:

递归超出了最大递归次数,即100,也就是说递归调用的层数超过了100。

 

解决方法

在使用递归 cte 的 select 语句的末尾添加  OPTION (maxrecursion N),N在 0 到 32767  之间的非负整数,当指定0时,不会套用任何限制。如果未指定这个选项,伺服器的预设限制是100。

posted @ 2024-02-05 14:53  暖暖De幸福  阅读(147)  评论(0编辑  收藏  举报