577. Employee Bonus

https://leetcode.com/articles/employee-bonus/ 

SELECT name, bonus

  FROM Employee e LEFT JOIN Bonus b ON e.empId = b.empId

 WHERE bonus < 1000;

select name, bonus from Employee eleft join Bonus b on e.empId = b.empIdwhere bonus < 1000;

猜你喜欢

转载自www.cnblogs.com/ffeng0312/p/9820242.html
今日推荐