Avatar of finance_teacher
finance_teacher

asked on 

Oracle -- Multiple SELECT statement (Part #2) ?

Below get ALL records, which is OK,
but I only want to get managers
tied to one employee.

Adding the below "WHERE" clause fails.

SELECT     LPAD(' ', (LEVEL - 1) * 3) || pos_code
      FROM COMPANY_POSITION_STRUCTURE_TAB T
      --where pos_code = '101/3802'
CONNECT BY PRIOR POS_CODE = SUP_POS_CODE
START WITH SUP_POS_CODE = '*'
----------------------------------------------------
What SELECT or PL/SQL will allow me to
enter '133/1115' and get the below, indented ?

100/1000 OWNER
  101/3005 PRESIDENT
    101/1111 VICE PRESIDENT
      211/1115 MANAGER
       133/1115 EMPLOYEE
----------------------------------------------------
What SELECT or PL/SQL will allow me to
enter '101/1111' and get the below, indented ?

100/1000 OWNER
  101/3005 PRESIDENT
    101/1111 VICE PRESIDENT

s001.jpg
Oracle Database

Avatar of undefined
Last Comment
cklautau

8/22/2022 - Mon