mysql递归查询树形叶子

发布时间:2020-04-01编辑:脚本学堂
分享一例mysql递归查询的例子,mysql递归显示树形的叶子,有需要的朋友参考下。

例句,mysql递归查询代码。
 

复制代码 代码示例:
SELECT
t.name,
t.unit_id,
t.parent_id
FROM
`scpi_unit_struct` t
WHERE NOT EXISTS(
select * from `scpi_unit_struct` t1,`scpi_unit_struct` t2  where
t1.unit_id=t2.parent_id AND t.unit_id=t1.unit_id
)
 

MySQL 递归查询当前节点子节点
mysql递归查询实现方法
MySQL存储过程递归调用实例