Writing SQL query for getting maximum occurrence of a value in a column

后端 未结 8 547
遇见更好的自我
遇见更好的自我 2021-01-02 02:44

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)         


        
8条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-02 03:21

    select manager, count(*) as employees from emp
      group by manager
      order by count(*) desc
    

    Take the first record. Depending on your SQL version, you can do this with a limit statement.

提交回复
热议问题