Coding Made Dizzy
To code, or not to code, that is the question
Sunday, September 10, 2017
181. Employees Earning More Than Their Managers
https://leetcode.com/problems/employees-earning-more-than-their-managers/description/
select
E.Name
as
Employee
from
Employee
as
E, Employee
as
M
where
E.ManagerId = M.Id
and
E.Salary > M.Salary;
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment