select * from EMPLOYEE
where DEPT_EMPLOYEE_owner = [OWNER_ROWID}
start with OFF_EMP_prior is NULL
connect by OFF_EMP_prior = prior rowid;
Risolto il problema con la query sopra. 'prior' dovrebbe essere usato invece di nocycle.
select * from EMPLOYEE
where DEPT_EMPLOYEE_owner = [OWNER_ROWID}
start with OFF_EMP_prior is NULL
connect by OFF_EMP_prior = prior rowid;
Risolto il problema con la query sopra. 'prior' dovrebbe essere usato invece di nocycle.