锁定老帖子 主题:mysql 树形结构查询(存储过程)
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-10-01
就用数据数据库表地址数据(中国地区) 来说吧(用Windows 请使用 gbk !!) 可直接运行(去除注解) 存储过程: DELIMITER // drop procedure if exists findLChild// /* iid 递归父节点 , layer 允许递归深度 */ CREATE PROCEDURE findLChild(iid bigint(20),layer bigint(20)) BEGIN /*创建接受查询的临时表 */ create temporary table if not exists tmp_table(id bigint(20),name varchar(50)) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*最高允许递归数*/ SET @@max_sp_recursion_depth = 99 ; call iterative(iid,layer);/*核心数据收集*/ select * from tmp_table ;/* 展现 */ drop temporary table if exists tmp_table ;/*删除临时表*/ END;// DELIMITER ; DELIMITER // drop procedure if exists iterative // CREATE PROCEDURE iterative(iid bigint(20),layer bigint(20)) BEGIN declare tid bigint(20) default -1 ; declare tname varchar(50) character set utf8; /* 游标定义 */ declare cur1 CURSOR FOR select id,name from location where fid=iid ; declare CONTINUE HANDLER FOR SQLSTATE '02000' SET tid = null; /* 允许递归深度 */ if layer>0 then OPEN cur1 ; FETCH cur1 INTO tid,tname ; WHILE ( tid is not null ) DO /* 核心数据收集 */ insert into tmp_table values(tid,tname); call iterative(tid,layer-1); FETCH cur1 INTO tid,tname ; END WHILE; end if; END;// DELIMITER ; //运行!! mysql> call findLChild(1,1)
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
浏览 3057 次