威凡网全力打造:网页编程、软件开发编程、平面设计、服务器端开发、操作系统等在线学习平台!学编程,上威凡网!
ASP教程>> ASP基础 应用技巧 数据库相关 ASP类 存储过程 FSO专栏 ASP其他
当前位置:首页 > ASP教程 > 存储过程
上一节 下一节
 存储过程里的递归 实现方法
作者:威凡教程 浏览:514
一个二叉树的递归,找出左边最下面的一个点 
id 自动编号 
pid 父id 
id_path 节点路径 
flg 位置,0左边,1右边 
alter      procedure [dbo].[get_class] 

复制代码 代码如下:
@class int, 
@return int output 
as 

select  @return=isnull(( select top 1 id  from class where pid=@class and flg=0 ),-2) 

if @return>-1 
    begin 
    exec get_class @return,@return output--这里为什么要用@return,你要最后得到这个值,必须把它传进去 

    end 

else 
    begin 
    select @return=@class 
    end 
go 
 
其实只需一个查询语句就能找出最下面的id 
节点路径包函1,并且父节点位置都是左边,取出最大一个 
select top 1 * from class a where id_path like '%1,%' and flg=0 and (select flg from class where id=a.pid)=0 order by id desc
申明:本教程内容由威凡网编辑整理并提供IT程序员分享学习,如文中有侵权行为,请与站长联系(QQ:254677821)!
上一节 下一节
相关教程  
其他教程  
ASP基础
应用技巧
数据库相关
ASP类
存储过程
FSO专栏
ASP其他

违法和不良信息举报中心】邮箱:254677821@qq.com
Copyright©2010~2024 威凡网 版权所有 苏ICP备2023020142号
站长QQ:254677821