LeetCode - 577. Employee Bonus (MySQL)

조민수·2024년 6월 28일
0

LeetCode

목록 보기
45/64
post-custom-banner

Easy, SQL - LEFT JOIN

RunTime : 920 ms


문제

Write a solution to report the name and bonus amount of each employee with a bonus less than 1000.

Return the result table in any order.

The result format is in the following example.


풀이

  • 이제는 어떤 상황에 LEFT JOIN을 해야하는 지 인지하고 있다.
    • 성장했다...
  • 1000미만 값과 null값 모두를 가져와야 했다.
SELECT E.name, B.bonus FROM Employee as E LEFT JOIN Bonus as B
ON E.empId = B.empId
WHERE B.bonus < 1000 or B.bonus is NULL
profile
사람을 좋아하는 Front-End 개발자
post-custom-banner

0개의 댓글