知识点: 1.Mysql取一位小数 round(100.123, 1) -> 100.1 2.case when的语法 3.注意审题,只要有奖金的员工 select t1.emp_no, t1.first_name, t1.last_name, t3.btype, t2.salary, round(case when t3.btype = 1 then t2.salary * 0.1 when t3.btype = 2 then t2.salary * 0.2 else t2.salary * 0.3 end, 1) bonus from employees t1 ...