校区下部门 及校区下员工
Posted dieyaxianju
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了校区下部门 及校区下员工相关的知识,希望对你有一定的参考价值。
该校区下所有员工
select * from employee e
INNER JOIN employee_department ed on e.id =ed.EmployeeId
LEFT JOIN department d on d.Id= ed.DepartmentId
where e.IsDeleted=0#未删除
and e.State=1#在职
and FIND_IN_SET(\'355\',d.Path)#校区id
GROUP BY e.id;
校区下部门
以上是关于校区下部门 及校区下员工的主要内容,如果未能解决你的问题,请参考以下文章