Pavol
11/15/2023, 3:25 PMWatz
11/15/2023, 9:23 PMPavol
11/16/2023, 6:36 AMWatz
11/16/2023, 6:39 AMWatz
11/19/2023, 3:02 PMPavol
11/20/2023, 1:17 PMSELECT
id AS EMPLOYEE_ID,
entityId AS EMPLOYEE_NAME,
supervisor AS MANAGER_ID,
BUILTIN.DF(supervisor) as MANAGER_NAME,
level AS LEVEL
FROM
Employee START WITH id = 21 CONNECT BY PRIOR supervisor = id
... where 21 is employeeId we want the hierarchy of.Watz
11/20/2023, 1:56 PM