-
1873. Calculate Special Bonus mysqlLeetCode_Study_Plan/SQL 2022. 9. 26. 21:42
https://leetcode.com/problems/calculate-special-bonus/?envType=study-plan&id=sql-i
Calculate Special Bonus - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
select employee_id, if (employee_id % 2 = 1 AND name NOT LIKE 'M%', salary, 0) as bonus from Employees order by employee_id;
'LeetCode_Study_Plan > SQL' 카테고리의 다른 글
196. Delete Duplicate Emails mysql (0) 2022.09.26 627. Swap Salary mysql (0) 2022.09.26 183. Customers Who Never Order mysql (1) 2022.09.25 584. Find Customer Referee mysql (0) 2022.09.25 1757. Recyclable and Low Fat Products mysql (1) 2022.09.25