Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 454 Bytes

File metadata and controls

28 lines (19 loc) · 454 Bytes

English Version

题目描述

None

解法

SQL

SELECT name,
         bonus
FROM Employee e
LEFT JOIN Bonus b
    ON e.empId = b.empId
WHERE (b.bonus < 1000
        OR b.bonus is null)