Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 630 Bytes

_577. Employee Bonus.md

File metadata and controls

31 lines (21 loc) · 630 Bytes

All prompts are owned by LeetCode. To view the prompt, click the title link above.

Back to top


First completed : May 22, 2024

Last updated : July 01, 2024


Related Topics : Database

Acceptance Rate : 77.04 %


Solutions

SQL

SELECT name, bonus
    FROM Employee e LEFT OUTER JOIN Bonus b ON e.empId = b.empId
    WHERE IFNULL(bonus, 0) < 1000;