码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 通过父节点ID获取所有子节点数据函数

时间:2017-08-11 00:59:16      阅读:377      评论:0      收藏:0      [点我收藏+]

标签:cat   declare   rom   into   mysq   concat   null   where   group   

BEGIN
DECLARE sTemp text;
DECLARE sTempChd text;

SET sTemp = ‘$‘;
SET sTempChd =cast(rootId as CHAR);

WHILE sTempChd is not null DO
SET sTemp = concat(sTemp,‘,‘,sTempChd);
SELECT group_concat(deptId) INTO sTempChd FROM ch_class where FIND_IN_SET(deptParId,sTempChd)>0;
END WHILE;
RETURN sTemp;
END

select * from ch_class where FIND_IN_SET(deptId,getParLst((SELECT MIN(id) from ch_class where kdgId = 机构ID))) GROUP BY deptParId;

Mysql 通过父节点ID获取所有子节点数据函数

标签:cat   declare   rom   into   mysq   concat   null   where   group   

原文地址:http://www.cnblogs.com/Bengi/p/7342721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!