MySQL 查询部门人数大于2的员工信息

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

如下表,查询部门人数大于2的员工信息,并把员工姓名和头衔一起输出出来

1.员工表(employee)

MySQL 查询部门人数大于2的员工信息_第1张图片

2.部门表(department)

MySQL 查询部门人数大于2的员工信息_第2张图片

3.Sql语句:

select CONCAT(name,title) ,sex,employee_no,department_id from test.employee where department_id in(select department_id from test.employee group by department_id HAVING(count(department_id)>1));

4.结果

MySQL 查询部门人数大于2的员工信息_第3张图片

5.主要Concat(string,string,....)和HAVING()的使用

6.太晚了,后续补上。。。哇嘎嘎

 

转载于:https://my.oschina.net/u/2416019/blog/692603

你可能感兴趣的:(MySQL 查询部门人数大于2的员工信息)