例句,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存储过程递归调用实例