leetcode

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

0577.sql (110B)


0 SELECT name, bonus
1 FROM Employee E
2 LEFT JOIN Bonus B
3 ON E.empId = B.empId
4 WHERE bonus < 1000 OR bonus is NULL