select t1.emp_no, t1.first_name, t1.last_name, t2.btype, t2.salary, round( case when t2.btype = 1 then salary * 0.1 when t2.btype = 2 then salary * 0.2 else salary * 0.3 end,1 ) as bonus from employees as t1 join...