给一个unitid找到他所有的父系单位id

前端之家收集整理的这篇文章主要介绍了给一个unitid找到他所有的父系单位id前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

实际就是个Postgresql的递归运算

with RECURSIVE cte as
(
select unit_parentid from gpm_unit where id=69 //循环体(69是已知的最初单位id)
union all
select gpm_unit.unit_parentid fromgpm_unit
inner joincte as con c.unit_parentid = gpm_unit.id//循环条件
)
select unit_parentid from cte;

红色字体是 这段语句的骨架,其余的都是要往上添加的肉

原文链接:https://www.f2er.com/postgresql/195995.html

猜你在找的Postgre SQL相关文章