用case when分类求bonus select e.emp_no, e.first_name, e.last_name, b.btype, s.salary, case when b.btype = 1 then s.salary*0.1 when b.btype = 2 then s.salary*0.2 else s.salary*0.3 end bonus from employees e join emp_bonus b on e.emp_no=b.emp_no join sa...