Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Employeesテーブルがあります。Oracleデータベースを使用しています。
Employees Table - Employee_id - first_name - last_name - manager_id - email_id
別の従業員の下にあるすべての従業員にクエリを実行するにはどうすればよいですか?
ありがとう。
OracleにはCONNECT BY構文があります...
CONNECT BY
SELECT * FROM employees START WITH employee_id = 123 CONNECT BY PRIOR employee_id = manager_id