码迷,mamicode.com
首页 > 数据库 > 详细

mysql中部门表的自我嵌套查询

时间:2019-08-06 18:25:21      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:自我   rom   user   name   sel   where   sele   and   join   

SELECT
t1.id,t1.deptName,
t2.id,t2.parentDept,t2.deptName,
t3.id,t3.parentDept,t3.deptName,
t4.id,t4.parentDept,t4.deptName,
t5.id,t5.parentDept,t5.deptName,
t6.id,t6.parentDept,t6.deptName,
t7.id,t7.parentDept,t7.deptName

FROM users_t_department t1
LEFT JOIN users_t_department t2 ON t1.id = t2.parentDept
LEFT JOIN users_t_department t3 ON t2.id = t3.parentDept
LEFT JOIN users_t_department t4 ON t3.id = t4.parentDept
LEFT JOIN users_t_department t5 ON t4.id = t5.parentDept
LEFT JOIN users_t_department t6 ON t5.id = t6.parentDept
LEFT JOIN users_t_department t7 ON t6.id = t7.parentDept


WHERE 1=1
and t1.id = "cab0212f-9d1e-4c8d-8a7f-ae1ac51701ce"

mysql中部门表的自我嵌套查询

标签:自我   rom   user   name   sel   where   sele   and   join   

原文地址:https://www.cnblogs.com/kr1240/p/11310840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!