表table1中有两个字段:部门ID(departmentid)、员工ID(employerid),请用SQL语句找出拥有10个员工以上
展开全部
select departmentid as '部门编号',
count(employerid) as '该部门员工数'
from table1 group by departmentid having count(employerid) >10
count(employerid) as '该部门员工数'
from table1 group by departmentid having count(employerid) >10
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select departmentid,count(employerid) total from table1
group by departmentid
having count(employerid)>10
group by departmentid
having count(employerid)>10
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select departmentid,count(employerid) total from table1 group by departmentid having total>10
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询