What will be the output of the following query? select dept from employee e group by dept having (select count() from employee cs_e where e.dept = cs_e.dept and (position like %managers' or position like %supervisor or position like '%president%'))>(select count() from employees cs_e where e.dept = cs_e.dept and (position not like '%manager' and position not like '%supervisor%' and position not like 'president%')) order by dept; Table: Employee(emp_id,fname,lname,dept,position)
Reveal answer
Fill a bubble to check yourself