577. Employee Bonus ¶ SQL 1 2 3 4 5SELECT Employee.name, Bonus.bonus FROM Employee LEFT JOIN Bonus USING (empId) WHERE IFNULL(Bonus.bonus, 0) < 1000;