select t1.emp_no ,first_name ,last_name ,btype ,salary ,round((case when btype=1 or btype=2 then salary*(btype/10) else salary*0.3 end),1) bonus from(select b.emp_no ,first_name ,last_name ,btype from emp_bonus b left join employees using(emp_no)) t1 j...