I have an emp table with the records below:
INSERT into emp(EmpId,Emp name, Manager)
Values(1,A,M1)
values(2,B,M1)
values(3,C,M2)
values(4,D,M3)
How can I find the Manager having the maximum number of employees under him? In this case, output should be M1. Please help.