1873. Special Bonus 출처 - https://leetcode.com/problems/calculate-special-bonus/ Write an SQL query to calculate the bonus of each employee. The bonus of an employee is 100% of their salary ,if the ID of the employee is an odd number and the employee name does not start with the character 'M'. The bonus of an employee is 0 otherwise. Return the result table ordered by employee_id. The query resul..