create table employee
(emp_id integer not null,
manager_id integer not null,
emp_name char(20) not null,
emp_tel char(10),
emp_salary number not null,
hire_date date,
constraint pk_employee primary key(emp_id)
);
alter table employee
add constraint fk_employee_manager foreign key(manager_id)
references employee(emp_id);
Need help to Find the ID of managers that have more than 5 employees working with them.