leetcode

Solution to some Leetcode problems written in C++
git clone git://git.dimitrijedobrota.com/leetcode.git
Log | Files | Refs | README | LICENSE |

0181.sql (121B)


1 SELECT EmployeeID AS "Employee" 2 FROM Employee AS E1, Employee AS E2 3 WHERE E1.managerID = E2.id AND E1.salary > E2.salary