Sql技术:mysql 8 根据parent_id生成全路径 ancestors。Sql技术MySQL8根据parentid生成全路径ancestors
代码演示
create or replace
algorithm = UNDEFINED view `view_dept_ancestors` as with recursive `cte` as (
select
`sys_dept`.`dept_id` as `dept_id`,
`sys_dept`.`parent_id` as `parent_id`,
1 as `lvl`
from
`sys_dept`
union all
select
`c`.`dept_id` as `dept_id`,
`t`.`parent_id` as `parent_id`,
(`c`.`lvl` + 1) as `lvl + 1`
from
(`cte` `c`
join `sys_dept` `t` on
((`t`.`dept_id` = `c`.`parent_id`))))
select
`cte`.`dept_id` as `dept_id`,
group_concat(`cte`.`parent_id` order by `cte`.`lvl` desc separator ',') as `ancestors`
from
`cte`
group by
`cte`.`dept_id`
温馨提示:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。