0 votes
in Oracle by
Write an Oracle SQL query to find employees who earn more than their managers.

1 Answer

0 votes
by
SELECT emp.*

FROM Employee emp

INNER JOIN Employee mgr ON emp.manager_id = mgr.employee_id

WHERE emp.salary > mgr.salary;

Related questions

0 votes
asked Jan 23 in Oracle by SakshiSharma
0 votes
asked Nov 8, 2021 in Sql by rajeshsharma
...