sql server 2005中的递归函数?
有人可以建议说明递归函数的编程示例吗? 例如斐波那契数列或阶乘..
Can anybody suggest programming examples that illustrate recursive functions?
For example fibonacci series or factorial..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
搜索“公用表表达式”。另请参阅此链接
更新从上面引用的链接添加示例:
Search for "common table expressions." See also this link
Update Adding example from the above-referenced link:
以下是我使用 google.com 找到的几篇文章;)
T–SQL 中的递归
在存储中使用递归流程
递归用户定义函数 (SQL Server 2000)
Here are a few articles that I found using google.com ;)
Recursion in T–SQL
Using recursion in stored procedures
A Recursive User-Defined Function (SQL Server 2000)
对于 CTE 查询递归,请参阅此链接。
https://web. archive.org/web/20210927200924/http://www.4guysfromrolla.com/webtech/071906-1.shtml
对于 TSQL 过程/函数递归,请参阅此链接 http://msdn.microsoft.com/en-us/library/aa175801%28SQL.80%29。 ASPX
For CTE query recursion see this link.
https://web.archive.org/web/20210927200924/http://www.4guysfromrolla.com/webtech/071906-1.shtml
For TSQL procedure/function recursion see this link http://msdn.microsoft.com/en-us/library/aa175801%28SQL.80%29.aspx