SQL_LeetCode_577_Employee Bonus


SQL_LeetCode_577_Employee Bonus

SQL_LeetCode_577_Employee Bonus 풀이 -- ORACLE, MYSQL, MSSQL SELECT E.NAME, B.BONUS FROM EMPLOYEE E LEFT OUTER JOIN BONUS B ON E.EMPID = B.EMPID WHERE B.BONUS < 1000 OR B.BONUS IS NULL; * 출처 https://leetcode.com/problems/employee-bonus/ Employee Bonus - LeetCode Can you solve this real interview question? Employee Bonus - Table: Employee +-------------+---------+ | Column Name | Type | +-------------+---------+ | empId | int | | name | varchar | | supervisor | int | | salary | int | +-------------...


#SQL #SQL_EmployeeBonus #SQL_LeetCode_577 #SQL_LeetCode_577_EmployeeBonus

원문링크 : SQL_LeetCode_577_Employee Bonus