Answers

Question and Answer:

  Home  Oracle PL-SQL

⟩ How to order siblings in oracle hierarchy queries?

SELECT last_name, employee_id, manager_id, LEVEL

FROM employees

START WITH employee_id = 100

CONNECT BY PRIOR employee_id = manager_id

ORDER SIBLINGS BY last_name;

 222 views

More Questions for you: