关于MySQL 递归查找所有子节点
2021/11/27 2:10:46
本文主要是介绍关于MySQL 递归查找所有子节点,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、直接上SQL
select dept_id from ( select t1.dept_id,t1.parent_id, if(find_in_set(parent_id, @pids) > 0, @pids := concat(@pids, ',', dept_id), 0) as ischild from ( select dept_id,parent_id from sys_dept t where t.del_flag = '0' order by parent_id, dept_id ) t1, (select @pids := 要查询的节点id) t2 ) t3 where ischild != 0;
解释:
@pids := 要查询的节点id 变量定义。
concat() 拼接字符串
find_in_set(parent_id, @pids) parent_id 字符串是否在@pids字符串中。 select find_in_set('2','1,2');返回2 select find_in_set('6','1');返回0 if(express1,express2,express3)条件语句,if语句类似三目运算符,当exprss1成立时,执行express2,否则执行express3;
这篇关于关于MySQL 递归查找所有子节点的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程