我需要显示部门名称和员工较多的部门的员工人数。但是我收到以下错误(#1111 - 无效使用组功能)。这是查询:
select e.dept_no, dnombre, count(*) from emple e, depart d
where e.dept_no=d.dept_no
group by e.dept_no, dnombre
having count(*)=(select max(count(*)) from emple group by dept_no);
我需要有关 MySQL 中此查询的帮助。