摘要:
https://blog.csdn.net/qq_36800514/article/details/115380100 -- 阅读权限 全239 部分9 select * from hljtxeip_institution where state = 1 and deleteState = 0 an 阅读全文
摘要:
WITH RECURSIVE subordinates AS ( SELECT * FROM sys_dept WHERE dept_id = 1 -- 这里以员工ID为1为例 UNION ALL SELECT e.* FROM sys_dept e INNER JOIN subordinates 阅读全文