Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 265 Bytes

577. Employee Bonus.md

File metadata and controls

9 lines (9 loc) · 265 Bytes

577. Employee Bonus

Question Link

Solution

# Write your MySQL query statement below
select e.name, b.bonus from Employee e left join Bonus b
on e.empId=b.empId
where b.bonus is NULL or b.bonus < 1000