# Write your MySQL query statement below
1873. 计算特殊奖金
表: Employees
+-------------+---------+ | 列名 | 类型 | +-------------+---------+ | employee_id | int | | name | varchar | | salary | int | +-------------+---------+ employee_id 是这个表的主键。 此表的每一行给出了雇员id ,名字和薪水。
写出一个SQL 查询语句,计算每个雇员的奖金。如果一个雇员的id是奇数并且他的名字不是以'M'开头,那么他的奖金是他工资的100%,否则奖金为0。
Return the result table ordered by employee_id
.
返回的结果集请按照employee_id
排序。
查询结果格式如下面的例子所示。
示例 1:
输入: Employees 表: +-------------+---------+--------+ | employee_id | name | salary | +-------------+---------+--------+ | 2 | Meir | 3000 | | 3 | Michael | 3800 | | 7 | Addilyn | 7400 | | 8 | Juan | 6100 | | 9 | Kannon | 7700 | +-------------+---------+--------+ 输出: +-------------+-------+ | employee_id | bonus | +-------------+-------+ | 2 | 0 | | 3 | 0 | | 7 | 7400 | | 8 | 0 | | 9 | 7700 | +-------------+-------+ 解释: 因为雇员id是偶数,所以雇员id 是2和8的两个雇员得到的奖金是0。 雇员id为3的因为他的名字以'M'开头,所以,奖金是0。 其他的雇员得到了百分之百的奖金。
原站题解
mysql 解法, 执行用时: 577 ms, 内存消耗: 0 B, 提交时间: 2022-05-30 10:13:48
select employee_id, case when (employee_id % 2 = 1 and name not like 'M%') then salary else 0 end as bonus from employees order by employee_id;
pythondata 解法, 执行用时: 296 ms, 内存消耗: 59.9 MB, 提交时间: 2023-08-09 11:03:18
import pandas as pd def calculate_special_bonus(employees: pd.DataFrame) -> pd.DataFrame: employees['bonus'] = employees.apply( lambda x: x['salary'] if x['employee_id'] % 2 and not x['name'].startswith('M') else 0, axis=1 ) return employees[['employee_id', 'bonus']].sort_values('employee_id')
mysql 解法, 执行用时: 619 ms, 内存消耗: 0 B, 提交时间: 2022-08-02 14:19:49
# Write your MySQL query statement below select employee_id, case when (employee_id % 2 = 1 and name not like 'M%') then salary else 0 end as bonus from employees order by employee_id;