select eb.emp_no, e.first_name, e.last_name, eb.btype, s.salary, round(s.salary * (case eb.btype when 1 then 0.1 when 2 then 0.2 else 0.3 end), 1) bonus from employees as e ...