|
| Total Answers and Comments: 5 |
Last Update: September 22, 2008 Asked by: rajaramanv |
|
| | |
|
Submitted by: mktiwary If you take the normal Oracle Employee (emp) table which consists of columns such as Employee Number (EMPNO) and Manager Number (MGR) then the query to find managers for all the employee is:
select e.ename as Employee, m.ename as Manager from emp e, emp m where e.MGR = m.EMPNO
Above answer was rated as good by the following members: singh13 | Go To Top
|